48 lines
927 B
TOML
48 lines
927 B
TOML
[project]
|
|
name = "hr-ai-backend"
|
|
version = "0.1.0"
|
|
description = "HR AI Backend with FastAPI"
|
|
requires-python = ">=3.11"
|
|
dependencies = [
|
|
"fastapi[standard]>=0.104.0",
|
|
"uvicorn[standard]>=0.24.0",
|
|
"sqlmodel>=0.0.14",
|
|
"asyncpg>=0.29.0",
|
|
"alembic>=1.13.0",
|
|
"python-multipart>=0.0.6",
|
|
"boto3>=1.34.0",
|
|
"python-dotenv>=1.0.0",
|
|
"pydantic-settings>=2.1.0",
|
|
]
|
|
|
|
[build-system]
|
|
requires = ["hatchling"]
|
|
build-backend = "hatchling.build"
|
|
|
|
[tool.hatch.build.targets.wheel]
|
|
packages = ["app"]
|
|
|
|
[tool.uv]
|
|
dev-dependencies = [
|
|
"pytest>=7.4.0",
|
|
"pytest-asyncio>=0.21.0",
|
|
"httpx>=0.25.0",
|
|
"black>=23.0.0",
|
|
"isort>=5.12.0",
|
|
"flake8>=6.0.0",
|
|
"mypy>=1.7.0",
|
|
]
|
|
|
|
[tool.black]
|
|
line-length = 88
|
|
target-version = ['py311']
|
|
|
|
[tool.isort]
|
|
profile = "black"
|
|
line_length = 88
|
|
|
|
[tool.mypy]
|
|
python_version = "3.11"
|
|
warn_return_any = true
|
|
warn_unused_configs = true
|
|
disallow_untyped_defs = true |