ocr-engine-1 / pyproject.toml
kanha-upadhyay's picture
Add gunicorn as a dependency in pyproject.toml and update poetry.lock
15ad0e8
raw
history blame contribute delete
790 Bytes
[project]
name = "parser"
version = "0.1.0"
description = ""
authors = [
{name = "Kanha Upadhyay",email = "kanha.upadhyay@sifars.com"}
]
readme = "README.md"
requires-python = "3.12.*"
dependencies = [
"fastapi (>=0.116.1,<0.117.0)",
"uvicorn (>=0.35.0,<0.36.0)",
"loguru (>=0.7.3,<0.8.0)",
"python-dotenv (>=1.1.1,<2.0.0)",
"pymupdf (>=1.26.3,<2.0.0)",
"pdf2image (>=1.17.0,<2.0.0)",
"torch (>=2.8.0,<3.0.0)",
"fuzzywuzzy (>=0.18.0,<0.19.0)",
"spacy (>=3.8.7,<4.0.0)",
"python-doctr (>=1.0.0,<2.0.0)",
"aiofiles (>=24.1.0,<25.0.0)",
"numpy (>=1.24.0,<2.0.0)",
"python-multipart (>=0.0.9,<0.1.0)",
"gunicorn (>=23.0.0,<24.0.0)"
]
[build-system]
requires = ["poetry-core>=2.0.0,<3.0.0"]
build-backend = "poetry.core.masonry.api"