[tool.poetry] name = "mosgortrans" version = "1.1.1" description = "Bot to help with mosgortans" authors = ["Dmitry Afanasyev "] [tool.poetry.dependencies] python = "^3.11" aiogram = "^2.25" selenium = "^4.17" 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.21" pre-commit = "^3.6" safety = "^2.4.0b2" pip-audit = "^2.7" yamllint = "^1.34" tomlkit = "^0.12" bandit = "^1.7" aresponses = "^2.1" pyupgrade = "^3.15" isort = "^5.13" black = "^24.1" mypy = "^1.8" types-PyMySQL = "^1.0" types-python-dateutil = "^2.8" pytest = "^8.0" pytest-asyncio = "^0.23" pytest-deadfixtures = "^2.2" pytest-mock = "^3.12" pytest-cov = "^4.1" pytest-timeout = "^2.2" pytest-sugar = "^1.0" pytest-clarity = "^1.0" pytest-env = "^1.1" nest-asyncio = "^1.6" autoflake = "^2.2" flake8 = "^7.0" flake8-logging-format = "^0.9" flake8-comprehensions = "^3.14" flake8-eradicate = "^1.5" flake8-pytest-style = "^1.7" flake8-aaa = "^0.17" flake8-bugbear = "^24.2" 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