Upload pyproject.toml with huggingface_hub
Browse files- pyproject.toml +15 -0
pyproject.toml
ADDED
|
@@ -0,0 +1,15 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
[project]
|
| 2 |
+
name = "banknote-finetunning"
|
| 3 |
+
version = "0.1.0"
|
| 4 |
+
description = "Add your description here"
|
| 5 |
+
readme = "README.md"
|
| 6 |
+
requires-python = ">=3.13"
|
| 7 |
+
dependencies = [
|
| 8 |
+
"torch>=2.1.0",
|
| 9 |
+
"torchvision>=0.16.0",
|
| 10 |
+
"pillow>=10.0.0",
|
| 11 |
+
"qdrant-client>=1.7.0",
|
| 12 |
+
"numpy>=1.24.0",
|
| 13 |
+
"tqdm>=4.65.0",
|
| 14 |
+
"huggingface-hub>=1.11.0",
|
| 15 |
+
]
|