-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
51 lines (44 loc) · 1.17 KB
/
pyproject.toml
File metadata and controls
51 lines (44 loc) · 1.17 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
[project]
name = "searchengine"
version = "0.1.0"
description = "Multimodal search engine using CLIP embeddings for bidirectional image-text retrieval."
authors = [
{name = "LeonByte"}
]
license = {text = "MIT"}
readme = "README.md"
requires-python = ">=3.12"
dependencies = [
"sentence-transformers (==5.1.0)",
"transformers (==4.41.0)",
"accelerate (==0.30.0)",
"numpy (>=1.24.0,<2.0.0)",
"jupyter (==1.0.0)",
"gradio (==4.44.1)",
"matplotlib (==3.7.0)",
"seaborn (==0.12.0)",
"tqdm (==4.65.0)",
"pillow (==10.0.0)",
"torch (>=2.6.0,<3.0.0)",
"torchvision (>=0.21.0,<0.22.0)",
"requests (==2.31.0)",
"kaggle (==1.6.6)",
"pandas (>=2.3.2,<3.0.0)",
"scikit-learn (>=1.7.1,<2.0.0)",
"streamlit (>=1.49.1,<2.0.0)"
]
[build-system]
requires = ["poetry-core>=2.0.0,<3.0.0"]
build-backend = "poetry.core.masonry.api"
[[tool.poetry.source]]
name = "pytorch"
url = "https://download.pytorch.org/whl/cu124"
priority = "explicit"
[tool.poetry.group.dev.dependencies]
pytest = "^8.4.2"
black = "^25.1.0"
isort = "^6.0.1"
ruff = "^0.12.12"
[tool.poetry.dependencies]
torch = {source = "pytorch"}
torchvision = {source = "pytorch"}