first commit

This commit is contained in:
VPN SaaS Dev
2026-05-12 03:52:13 +09:00
commit d93c88c751
44 changed files with 4108 additions and 0 deletions

37
pyproject.toml Normal file
View File

@@ -0,0 +1,37 @@
[project]
name = "drivers-bot"
version = "0.1.0"
description = "Telegram mini app and bot for car ownership expenses"
requires-python = ">=3.11"
dependencies = [
"aiogram>=3.4,<4.0",
"alembic>=1.13,<2.0",
"asyncpg>=0.29,<1.0",
"fastapi>=0.110,<1.0",
"httpx>=0.27,<1.0",
"matplotlib>=3.8,<4.0",
"pandas>=2.2,<3.0",
"pydantic-settings>=2.2,<3.0",
"python-multipart>=0.0.9,<1.0",
"sqlalchemy[asyncio]>=2.0,<3.0",
"uvicorn[standard]>=0.29,<1.0",
]
[build-system]
requires = ["setuptools>=69"]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
include = ["app*", "bot*"]
[project.optional-dependencies]
dev = [
"ruff>=0.4,<1.0",
]
[tool.ruff]
line-length = 100
target-version = "py311"
[tool.ruff.lint]
select = ["E", "F", "I", "UP", "B"]