39 lines
624 B
TOML
39 lines
624 B
TOML
[tool.poetry]
|
|
name = "aero"
|
|
version = "0.0.2"
|
|
description = ""
|
|
authors = ["Dmitrium12 <belicdima8@gmail.com>"]
|
|
readme = "README.md"
|
|
package-mode = false
|
|
|
|
[tool.poetry.dependencies]
|
|
python = "^3.11"
|
|
aiogram = "^3.3.0"
|
|
requests = "^2.31.0"
|
|
bs4 = "^0.0.2"
|
|
pymongo = "^4.6.1"
|
|
environs = "^11.0.0"
|
|
ruff = "^0.4.8"
|
|
|
|
|
|
[build-system]
|
|
requires = ["poetry-core"]
|
|
build-backend = "poetry.core.masonry.api"
|
|
|
|
[tool.ruff]
|
|
exclude = [
|
|
".git",
|
|
".ruff_cache",
|
|
".venv",
|
|
"venv",
|
|
"mongodb",
|
|
"data",
|
|
]
|
|
line-length = 92
|
|
|
|
[tool.ruff.lint]
|
|
select = ["E", "F", "UP", "I"]
|
|
|
|
[tool.ruff.format]
|
|
skip-magic-trailing-comma = true
|