File size: 521 Bytes
04bef66
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
[tool.poetry]
name = "clip-embedding"
version = "0.1.0"
description = ""
authors = ["Nitin Surya <[email protected]>"]
readme = "README.md"

[tool.poetry.dependencies]
python = "^3.11"
gradio = "^4.16.0"
numpy = "^1.26.3"
pillow = "^10.2.0"
transformers = "^4.37.2"
torch = {version = "^2.2.0+cpu", source = "pytorch-cpu"}

[[tool.poetry.source]]
name = "pytorch-cpu"
url = "https://download.pytorch.org/whl/cpu"
priority = "secondary"

[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"