Files
AFFAANhandClaude Opus 5 f6a54d6f93 Initial commit: Maskan CRM backend
Independent FastAPI backend for Maskan CRM.

Owns contacts, organizations, leads, pipelines, activities, products,
quotes, users, permissions, audit records and first-party integration
credentials, with Alembic migrations against PostgreSQL.

Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
2026-08-01 10:28:41 +05:30

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"]