diff options
| author | 2022-08-21 23:04:15 +0100 | |
|---|---|---|
| committer | 2022-08-21 23:04:15 +0100 | |
| commit | dde3773ecb76775edc50e2d13937e07f0970c1d9 (patch) | |
| tree | f0f3426ff0cbc3f00a47f0761f1173512a51312e /pyproject.toml | |
| parent | Add missing space to prefix list (diff) | |
| parent | Create dependabot.yml (diff) | |
Merge pull request #15 from python-discord/bot-core-integration
Diffstat (limited to 'pyproject.toml')
| -rw-r--r-- | pyproject.toml | 40 |
1 files changed, 23 insertions, 17 deletions
diff --git a/pyproject.toml b/pyproject.toml index affe7c4..d23fbba 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,28 +1,34 @@ [tool.poetry] name = "king-arthur" -version = "0.1.0" +version = "1.0.0" description = "King Arthur is a helper for the Python Discord DevOps team." -authors = ["Joe Banks <[email protected]>"] +authors = ["Joe Banks <[email protected]>", "Chris Lovering <[email protected]>"] license = "MIT" [tool.poetry.dependencies] -python = "^3.9" -pydantic = {extras = ["dotenv"], version = "^1.8.2"} -loguru = "^0.5.3" -kubernetes_asyncio = "^12.1.1" -tabulate = {extras = ["widechars"], version = "^0.8.9"} -"discord.py" = {url = "https://github.com/Rapptz/discord.py/archive/master.zip"} -jishaku = "^2.2.0" +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.1" +tabulate = {extras = ["widechars"], version = "0.8.10"} +jishaku = "2.5.1" [tool.poetry.dev-dependencies] -black = "^21.6b0" -taskipy = "^1.8.1" -flake8 = "^3.9.2" -isort = "^5.9.2" -flake8-annotations = "^2.6.2" -flake8-bandit = "^2.1.2" -flake8-docstrings = "^1.6.0" -flake8-isort = "^4.0.0" +flake8 = "5.0.3" +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" |