46 lines
900 B
TOML
46 lines
900 B
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",
|
|
]
|
|
|
|
[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"]
|