mirror of
https://github.com/Balshgit/mosgortrans.git
synced 2025-09-11 13:00:40 +03:00
99 lines
1.9 KiB
TOML
99 lines
1.9 KiB
TOML
[tool.poetry]
|
|
name = "mosgortrans"
|
|
version = "1.1.1"
|
|
description = "Bot to help with mosgortans"
|
|
authors = ["Dmitry Afanasyev <Balshbox@gmail.com>"]
|
|
|
|
[tool.poetry.dependencies]
|
|
python = "^3.11"
|
|
aiogram = "^2.25"
|
|
selenium = "^4.16"
|
|
httpx = "^0.26"
|
|
wget = "^3.2"
|
|
loguru = "^0.7"
|
|
python-decouple = "^3.8"
|
|
apscheduler = "^3.10"
|
|
gunicorn = "^21.2"
|
|
|
|
factory-boy = "^3.3"
|
|
Faker = "^18.3.0"
|
|
wheel = "^0.42"
|
|
|
|
[tool.poetry.dev-dependencies]
|
|
ipython = "^8.18"
|
|
pre-commit = "^3.6"
|
|
safety = "^2.3"
|
|
pip-audit = "^2.6"
|
|
yamllint = "^1.33"
|
|
tomlkit = "^0.12"
|
|
bandit = "^1.7"
|
|
aresponses = "^2.1"
|
|
|
|
pyupgrade = "^3.15"
|
|
isort = "^5.13"
|
|
black = "^23.12"
|
|
|
|
mypy = "^1.8"
|
|
types-PyMySQL = "^1.0"
|
|
types-python-dateutil = "^2.8"
|
|
|
|
pytest = "^7.4"
|
|
pytest-asyncio = "^0.23"
|
|
pytest-deadfixtures = "^2.2"
|
|
pytest-testmon = "^2.1"
|
|
pytest-mock = "^3.12"
|
|
pytest-cov = "^4.1"
|
|
pytest-timeout = "^2.2"
|
|
pytest-sugar = "^0.9"
|
|
pytest-clarity = "^1.0"
|
|
pytest-env = "^1.1"
|
|
nest-asyncio = "^1.5"
|
|
|
|
autoflake = "^2.2"
|
|
flake8 = "^6.1"
|
|
flake8-logging-format = "^0.9"
|
|
flake8-comprehensions = "^3.14"
|
|
flake8-eradicate = "^1.5"
|
|
flake8-pytest-style = "^1.7"
|
|
flake8-aaa = "^0.17"
|
|
flake8-bugbear = "^23.12"
|
|
flake8-debugger = "^4.1"
|
|
flake8-expression-complexity = "^0.0.11"
|
|
flake8-fixme = "^1.1"
|
|
flake8-simplify = "^0.21"
|
|
flake8-variables-names = "^0.0.6"
|
|
flake8-bandit = "^4.1"
|
|
flake8-tidy-imports = "^4.10"
|
|
|
|
|
|
[tool.isort]
|
|
profile = "black"
|
|
multi_line_output = 3
|
|
src_paths = ["app", "tests"]
|
|
combine_as_imports = true
|
|
|
|
|
|
[tool.mypy]
|
|
python_version = "3.10"
|
|
strict = true
|
|
ignore_missing_imports = true
|
|
allow_subclassing_any = true
|
|
allow_untyped_calls = true
|
|
pretty = true
|
|
show_error_codes = true
|
|
implicit_reexport = true
|
|
allow_untyped_decorators = true
|
|
warn_return_any = false
|
|
|
|
|
|
[tool.coverage.run]
|
|
relative_files = true
|
|
|
|
[tool.pytest.ini_options]
|
|
filterwarnings = [
|
|
"error",
|
|
"ignore::DeprecationWarning",
|
|
]
|
|
|
|
[tool.black]
|
|
skip-string-normalization = true |