Spaces:
Runtime error
Runtime error
start on pyproject.toml but package discovery failing
Browse files- pyproject.toml +46 -0
pyproject.toml
ADDED
@@ -0,0 +1,46 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
[build-system]
|
2 |
+
requires = ["setuptools>=40.8.0", "wheel"]
|
3 |
+
build-backend = "setuptools.build_meta:__legacy__"
|
4 |
+
|
5 |
+
[project]
|
6 |
+
name = "MathText"
|
7 |
+
packages = {find = "mathtext"}
|
8 |
+
version = "0.0.3"
|
9 |
+
authors = [
|
10 |
+
{name="Sebastian Larsen", email="[email protected]"},
|
11 |
+
{name="Çetin ÇAKIR", email="[email protected]"},
|
12 |
+
{name="Hobson Lane", email="[email protected]"},
|
13 |
+
]
|
14 |
+
description = "Natural Language Understanding (text processing) for math symbols, digits, and words with a Gradio user interface and REST API."
|
15 |
+
readme = "README.md"
|
16 |
+
requires-python = ">=3.7"
|
17 |
+
license = {file = "LICENSE.md"}
|
18 |
+
classifiers = [
|
19 |
+
"Programming Language :: Python :: 3",
|
20 |
+
# "License :: OSI Approved :: MIT License",
|
21 |
+
"License :: OSI Approved :: GNU Affero General Public License v3 or later (AGPLv3+)",
|
22 |
+
"Operating System :: OS Independent",
|
23 |
+
]
|
24 |
+
|
25 |
+
[dependencies]
|
26 |
+
python = "^3.7"
|
27 |
+
editdistance = "*"
|
28 |
+
gradio = "3.14.*"
|
29 |
+
httpx = "0.23.*"
|
30 |
+
matplotlib = "3.6.*"
|
31 |
+
pandas = "1.5.*"
|
32 |
+
pandas-gbq = "0.19.*"
|
33 |
+
pytest = "7.2.*"
|
34 |
+
python-dotenv = "0.21.*"
|
35 |
+
scikit-learn = "^1.2"
|
36 |
+
spacy = "3.4.*"
|
37 |
+
torch = "1.12.*"
|
38 |
+
transformers = "4.24.*"
|
39 |
+
|
40 |
+
# [build-system]
|
41 |
+
# requires = ["hatchling"]
|
42 |
+
# build-backend = "hatchling.build"
|
43 |
+
|
44 |
+
[tool.poetry.dev-dependencies]
|
45 |
+
pytest = "^7.2"
|
46 |
+
|