Spaces:
Runtime error
Runtime error
hobs
commited on
Commit
·
eed116a
1
Parent(s):
28c4fc8
better pyproject.toml
Browse files- pyproject.toml +14 -3
pyproject.toml
CHANGED
|
@@ -8,6 +8,16 @@ authors = [
|
|
| 8 |
]
|
| 9 |
description = "Natural Language Understanding (text processing) for math symbols, digits, and words with a Gradio user interface and REST API."
|
| 10 |
readme = "README.md"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 11 |
|
| 12 |
[tool.poetry.dependencies]
|
| 13 |
editdistance = "*"
|
|
@@ -21,12 +31,13 @@ python = "^3.7,<3.10"
|
|
| 21 |
python-dotenv = "0.21.*"
|
| 22 |
# scikit-learn = "^1.2"
|
| 23 |
# scikit-image = "*"
|
| 24 |
-
|
| 25 |
-
|
| 26 |
transformers = "^4.24"
|
|
|
|
| 27 |
|
| 28 |
[tool.poetry.group.dev.dependencies]
|
| 29 |
-
pytest = "^7.2
|
| 30 |
|
| 31 |
[build-system]
|
| 32 |
requires = ["poetry-core"]
|
|
|
|
| 8 |
]
|
| 9 |
description = "Natural Language Understanding (text processing) for math symbols, digits, and words with a Gradio user interface and REST API."
|
| 10 |
readme = "README.md"
|
| 11 |
+
# requires-python = ">=3.7"
|
| 12 |
+
license = {file = "LICENSE.md"}
|
| 13 |
+
classifiers = [
|
| 14 |
+
"Programming Language :: Python :: 3",
|
| 15 |
+
"Programming Language :: Python :: 3.7",
|
| 16 |
+
"Programming Language :: Python :: 3.9",
|
| 17 |
+
# "License :: OSI Approved :: MIT License",
|
| 18 |
+
"License :: OSI Approved :: GNU Affero General Public License v3 or later (AGPLv3+)",
|
| 19 |
+
"Operating System :: OS Independent",
|
| 20 |
+
]
|
| 21 |
|
| 22 |
[tool.poetry.dependencies]
|
| 23 |
editdistance = "*"
|
|
|
|
| 31 |
python-dotenv = "0.21.*"
|
| 32 |
# scikit-learn = "^1.2"
|
| 33 |
# scikit-image = "*"
|
| 34 |
+
spacy = "^3.4"
|
| 35 |
+
torch = "^1.12"
|
| 36 |
transformers = "^4.24"
|
| 37 |
+
jupyter = "*"
|
| 38 |
|
| 39 |
[tool.poetry.group.dev.dependencies]
|
| 40 |
+
pytest = "^7.2"
|
| 41 |
|
| 42 |
[build-system]
|
| 43 |
requires = ["poetry-core"]
|