[tool.poetry] name = "MathText_FastAPI" version = "0.0.1" authors = [ "Sebastian Larsen ", "Çetin ÇAKIR ", "Hobson Lane ", ] 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.8" license = "AGPL-3.0-or-later" classifiers = [ "Programming Language :: Python :: 3", "Programming Language :: Python :: 3.8", "Programming Language :: Python :: 3.9", "License :: OSI Approved :: GNU Affero General Public License v3 or later (AGPLv3+)", "Operating System :: OS Independent", ] [tool.poetry.dependencies] mathactive = {git = "git@gitlab.com:tangibleai/community/mathactive.git", rev = "vlad"} mathtext = {git = "https://gitlab.com/tangibleai/community/mathtext", rev = "main"} fastapi = "^0.90.0" pydantic = "*" python = "^3.8" requests = "2.27.*" sentencepiece = "0.1.*" supabase = "*" uvicorn = "0.17.*" pandas = "^1.5.3" scipy = "^1.10.1" [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-fastapi"