Simon Clematide
commited on
Commit
·
a6a5041
1
Parent(s):
d8a7362
Add Pipfile and pyproject.toml for dependency management
Browse files- Pipfile +16 -0
- pyproject.toml +3 -0
Pipfile
ADDED
|
@@ -0,0 +1,16 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
[[source]]
|
| 2 |
+
name = "pypi"
|
| 3 |
+
url = "https://pypi.org/simple"
|
| 4 |
+
verify_ssl = true
|
| 5 |
+
|
| 6 |
+
[packages]
|
| 7 |
+
transformers = ">=4.36"
|
| 8 |
+
tqdm = "*"
|
| 9 |
+
|
| 10 |
+
[dev-packages]
|
| 11 |
+
|
| 12 |
+
[requires]
|
| 13 |
+
python_version = "3.11"
|
| 14 |
+
|
| 15 |
+
[scripts]
|
| 16 |
+
predict = "sdg-predict"
|
pyproject.toml
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
[build-system]
|
| 2 |
+
requires = ["setuptools>=64", "wheel"]
|
| 3 |
+
build-backend = "setuptools.build_meta"
|