TangibleAI/mathtext-fastapi
1
1[tool.poetry]2name = "MathText_FastAPI"3version = "0.0.1"4authors = [5 "Sebastian Larsen <sebastianlarson22@gmail.com>",6 "Çetin ÇAKIR <cetincakirtr@gmail.com>",7 "Hobson Lane <gitlab@totalgood.com>",8 ]9description = "Natural Language Understanding (text processing) for math symbols, digits, and words with a Gradio user interface and REST API."10readme = "README.md"11# requires-python = ">=3.8"12license = "AGPL-3.0-or-later"13classifiers = [14 "Programming Language :: Python :: 3",15 "Programming Language :: Python :: 3.8",16 "Programming Language :: Python :: 3.9",17 "License :: OSI Approved :: GNU Affero General Public License v3 or later (AGPLv3+)",18 "Operating System :: OS Independent",19]20 21 22[tool.poetry.dependencies]23mathactive = {git = "git@gitlab.com:tangibleai/community/mathactive.git", rev = "vlad"}24mathtext = {git = "https://gitlab.com/tangibleai/community/mathtext", rev = "main"}25fastapi = "^0.90.0"26pydantic = "*"27python = "^3.8"28requests = "2.27.*" 29sentencepiece = "0.1.*"30supabase = "*"31uvicorn = "0.17.*"32pandas = "^1.5.3"33scipy = "^1.10.1"34 35[tool.poetry.group.dev.dependencies]36pytest = "^7.2"37 38[build-system]39requires = ["poetry-core"]40build-backend = "poetry.core.masonry.api"41 42# [build-system]43# requires = ["hatchling"]44# build-backend = "hatchling.build"45 46# repository = "https://gitlab.com/tangibleai/community/mathtext-fastapi"47 