llm-ready-data / pyproject.toml
validops-east-1's picture
feat: added firecrawl anydoc parser
978b74e
Raw
History Blame Contribute Delete
1.27 kB
[build-system]
requires = ["setuptools>=70", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "agentdeck-backend"
version = "1.0.0"
description = "AgentDeck-Backend"
readme = "README.md"
requires-python = ">=3.10"
license = { text = "MIT" }
dependencies = [
"markitdown[audio-transcription]>=0.1.5",
"firecrawl-anydoc>=0.1.8",
"fastapi>=0.111",
"uvicorn[standard]>=0.30",
"pydantic>=2.7",
"pydantic-settings>=2.0.0",
"PyYAML>=6.0.0",
"python-multipart>=0.0.9",
"httpx>=0.27",
"youtube-transcript-api>=1.2.4",
"pyfiglet>=1.0.0",
"rich>=13.7",
"numpy>=1.26.0",
"rapidocr-onnxruntime>=1.4.4",
"onnxruntime>=1.18.0",
"pillow>=10.0.0",
"pypdfium2>=4.30.0",
"pandas>=2.0.0",
"matplotlib>=3.8.0",
"seaborn>=0.13.0",
"spacy>=3.7.0",
"phonenumbers>=8.13.0",
"jsonschema>=4.21.0",
"supabase>=2.0.0",
"apscheduler>=3.10.4",
"croniter>=2.0.0",
"pytz>=2024.1",
"redis>=5.0.0",
]
[project.optional-dependencies]
dev = ["pytest>=8", "pytest-asyncio>=0.23", "qrcode[pil]>=8.0"]
[tool.pytest.ini_options]
asyncio_mode = "auto"
asyncio_default_fixture_loop_scope = "function"
[tool.setuptools.packages.find]
where = ["."]
include = ["agentdeck_backend*"]