[tool.poetry] name = "king-arthur" version = "1.0.0" description = "King Arthur is a helper for the Python Discord DevOps team." authors = ["Joe Banks ", "Chris Lovering "] license = "MIT" [tool.poetry.dependencies] python = "3.10.*" # See https://bot-core.pythondiscord.com/ for docs. bot-core = { url = "https://github.com/python-discord/bot-core/archive/refs/tags/v8.2.0.zip" } pydantic = {extras = ["dotenv"], version = "1.9.2"} loguru = "0.6.0" kubernetes_asyncio = "24.2.2" tabulate = {extras = ["widechars"], version = "0.8.10"} jishaku = "2.5.1" [tool.poetry.dev-dependencies] flake8 = "5.0.4" flake8-annotations = "2.9.1" # flake8-bandit is broken at the moment with flake8 v5: https://github.com/tylerwince/flake8-bandit/pull/35 # flake8-bandit = "3.0.0" flake8-docstrings = "1.6.0" flake8-isort = "4.2.0" black = "22.6.0" taskipy = "1.10.2" isort = "5.10.1" [tool.taskipy.tasks] start = "python -m arthur" lint = "flake8" format = "black arthur" [tool.black] line-length = 100 [build-system] requires = ["poetry-core>=1.0.0"] build-backend = "poetry.core.masonry.api"