43 lines
814 B
TOML
43 lines
814 B
TOML
[project]
|
|||
|
|
name = "maskan-crm-api"
|
||
|
|
version = "0.1.0"
|
||
|
|
description = "FastAPI backend for Maskan CRM"
|
||
|
|
requires-python = ">=3.11,<3.14"
|
||
|
|
dependencies = [
|
||
|
|
"alembic>=1.14.0",
|
||
|
|
"email-validator>=2.2.0",
|
||
|
|
"fastapi>=0.115.0",
|
||
|
|
"psycopg[binary]>=3.2.0",
|
||
|
|
"pydantic-settings>=2.7.0",
|
||
|
|
"PyJWT>=2.10.0",
|
||
|
|
"sqlalchemy>=2.0.36",
|
||
|
|
"uvicorn[standard]>=0.34.0",
|
||
|
|
]
|
||
|
|
|
||
|
|
[project.optional-dependencies]
|
||
|
|
dev = [
|
||
|
|
"httpx>=0.28.0",
|
||
|
|
"pytest>=8.3.0",
|
||
|
|
"pytest-cov>=6.0.0",
|
||
|
|
"ruff>=0.9.0",
|
||
|
|
]
|
||
|
|
|
||
|
|
[build-system]
|
||
|
|
requires = ["setuptools>=75.0"]
|
||
|
|
build-backend = "setuptools.build_meta"
|
||
|
|
|
||
|
|
[tool.setuptools.packages.find]
|
||
|
|
include = ["app*"]
|
||
|
|
|
||
|
|
[tool.pytest.ini_options]
|
||
|
|
testpaths = ["tests"]
|
||
|
|
addopts = "-q"
|
||
|
|
|
||
|
|
[tool.ruff]
|
||
|
|
line-length = 100
|
||
|
|
target-version = "py311"
|
||
|
|
|
||
|
|
[tool.ruff.lint]
|
||
|
|
select = ["E", "F", "I", "UP", "B"]
|
||
|
|
|