first commit

This commit is contained in:
2025-07-26 20:45:48 +03:00
commit e08625c3b0
5 changed files with 892 additions and 0 deletions

22
pyproject.toml Normal file
View File

@ -0,0 +1,22 @@
[project]
name = "crm-backend"
version = "0.1.0"
description = "Add your description here"
requires-python = ">=3.13"
dependencies = [
"aiohttp[speedups]>=3.12.14",
"alembic>=1.16.4",
"asyncpg>=0.30.0",
"fastapi>=0.116.1",
"gunicorn>=23.0.0",
"pydantic>=2.11.7",
"python-dotenv>=1.1.1",
"redis[hiredis]>=6.2.0",
"sqlalchemy[asyncio]>=2.0.41",
"uvicorn>=0.35.0",
]
[dependency-groups]
dev = [
"ruff>=0.12.5",
]