37 lines
632 B
TOML
37 lines
632 B
TOML
[tool.poetry]
|
|
name = "telegram-bot"
|
|
version = "0.1.0"
|
|
description = ""
|
|
authors = ["Dmitrium12 <belicdima8@gmail.com>"]
|
|
license = "LICENSE"
|
|
readme = "README.md"
|
|
|
|
[tool.poetry.dependencies]
|
|
python = "=3.12.7"
|
|
ruff = "^0.8.2"
|
|
radon = "^6.0.1"
|
|
requests = "^2.32.3"
|
|
python-dotenv = "^1.0.1"
|
|
loguru = "^0.7.3"
|
|
pymongo = "^4.10.1"
|
|
aiogram = "^3.15.0"
|
|
aiohttp-socks = "^0.9.2"
|
|
|
|
|
|
[build-system]
|
|
requires = ["poetry-core"]
|
|
build-backend = "poetry.core.masonry.api"
|
|
|
|
[tool.ruff]
|
|
exclude = [
|
|
".git",
|
|
".ruff_cache",
|
|
]
|
|
line-length = 92
|
|
|
|
[tool.ruff.lint]
|
|
select = ["E", "F", "UP", "I"]
|
|
|
|
[tool.ruff.format]
|
|
skip-magic-trailing-comma = true
|