OCR / pyproject.toml
github-actions[bot]
Auto-deploy from GitHub: 59d76b452c7a3440b06b7d4ccf9f6c12818b3b1c
e1c78c0
raw
history blame contribute delete
536 Bytes
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "ocr-runner-backend"
version = "2.0.0"
description = "FastAPI backend for OCR Runner"
dependencies = [
"fastapi",
"uvicorn",
"aiosqlite",
"aiofiles",
"python-multipart",
"custom_logger @ git+https://github.com/jebin2/custom_logger.git",
"ocr-runner[paddleocr] @ git+https://github.com/jebin2/OCR.git"
]
[project.scripts]
ocr-backend = "app.main:app"
[tool.setuptools.packages.find]
include = ["app*"]