Spaces:
Runtime error
Runtime error
File size: 1,361 Bytes
5930a87 a6e0470 5930a87 a6e0470 eed116a 5701b3e eed116a a6e0470 5930a87 a6e0470 28c4fc8 a6e0470 28c4fc8 a6e0470 28c4fc8 eed116a 28c4fc8 eed116a a6e0470 5930a87 eed116a 5930a87 a6e0470 5930a87 |
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 |
[tool.poetry]
name = "MathText"
version = "0.0.3"
authors = [
"Sebastian Larsen <[email protected]>",
"Çetin ÇAKIR <[email protected]>",
"Hobson Lane <[email protected]>",
]
description = "Natural Language Understanding (text processing) for math symbols, digits, and words with a Gradio user interface and REST API."
readme = "README.md"
# requires-python = ">=3.7"
license = "AGPL-3.0-or-later"
classifiers = [
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.9",
# "License :: OSI Approved :: MIT License",
"License :: OSI Approved :: GNU Affero General Public License v3 or later (AGPLv3+)",
"Operating System :: OS Independent",
]
[tool.poetry.dependencies]
editdistance = "*"
gradio = "3.14.*"
httpx = "0.23.*"
matplotlib = "3.6.*"
# pandas = "^1.5"
pandas-gbq = "^0.19"
pytest = "7.2.*"
python = "^3.7,<3.10"
python-dotenv = "0.21.*"
# scikit-learn = "^1.2"
# scikit-image = "*"
spacy = "^3.4"
torch = "^1.12"
transformers = "^4.24"
jupyter = "*"
[tool.poetry.group.dev.dependencies]
pytest = "^7.2"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
# [build-system]
# requires = ["hatchling"]
# build-backend = "hatchling.build"
# repository = "https://gitlab.com/tangibleai/community/mathtext"
|