first commit
This commit is contained in:
37
pyproject.toml
Normal file
37
pyproject.toml
Normal 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"]
|
||||
Reference in New Issue
Block a user