virgil-ai/pyproject.toml

55 lines
1.1 KiB
TOML

[project]
name = "lolly-ai"
version = "0.1.0"
description = "Insurance AI assistant with chat and estimation capabilities"
readme = "README.md"
requires-python = ">=3.13"
dependencies = [
"fastapi[standard]>=0.116.1",
"httpx>=0.28.1",
"pandas>=2.3.1",
"pydantic>=2.11.7",
"pydantic-settings>=2.0.0",
"beautifulsoup4>=4.12.0",
"lxml>=4.9.0",
"requests>=2.31.0",
"redis>=6.2.0",
"pip>=25.2",
"openpyxl>=3.1.5",
"pypdf2>=3.0.1",
"pdfplumber>=0.11.7",
"sqlalchemy[asyncio]>=2.0.42",
"asyncpg>=0.30.0",
"alembic>=1.16.4",
"psycopg2-binary>=2.9.10",
]
[project.optional-dependencies]
dev = [
"pytest>=7.4.0",
"pytest-asyncio>=0.21.0",
"black>=23.0.0",
"isort>=5.12.0",
"mypy>=1.7.0"
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.black]
line-length = 88
target-version = ['py313']
[tool.isort]
profile = "black"
line_length = 88
[tool.mypy]
python_version = "3.13"
warn_return_any = true
warn_unused_configs = true
disallow_untyped_defs = true
[tool.hatch.build.targets.wheel]
packages = ["src"]