41 lines
803 B
TOML
41 lines
803 B
TOML
[build-system]
|
|
requires = ["setuptools>=68", "setuptools-scm", "wheel"]
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
[project]
|
|
name = "surfaces-bot"
|
|
version = "0.1.0"
|
|
description = "Lambda Lab 3.0 — Telegram и Matrix боты"
|
|
requires-python = ">=3.11"
|
|
|
|
dependencies = [
|
|
"aiogram>=3.4,<4",
|
|
"matrix-nio>=0.21",
|
|
"pydantic>=2.5",
|
|
"structlog>=24.1",
|
|
"python-dotenv>=1.0",
|
|
"httpx>=0.27",
|
|
"aiohttp>=3.9",
|
|
]
|
|
|
|
[project.optional-dependencies]
|
|
dev = [
|
|
"pytest>=8.0",
|
|
"pytest-asyncio>=0.23",
|
|
"pytest-aiohttp>=1.0",
|
|
"pytest-cov>=4.1",
|
|
"ruff>=0.3",
|
|
"mypy>=1.8",
|
|
]
|
|
|
|
[tool.pytest.ini_options]
|
|
asyncio_mode = "auto"
|
|
testpaths = ["tests"]
|
|
pythonpath = ["."]
|
|
|
|
[tool.ruff]
|
|
line-length = 100
|
|
target-version = "py311"
|
|
|
|
[tool.ruff.lint]
|
|
select = ["E", "F", "I", "UP", "B"]
|