aboutsummaryrefslogtreecommitdiffstats
path: root/pyproject.toml
blob: 4a056757752fc9b8679dbd274bbd5fef84dfbd01 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
[tool.poetry]
name = "king-arthur"
version = "1.0.0"
description = "King Arthur is a helper for the Python Discord DevOps team."
authors = ["Joe Banks <[email protected]>", "Chris Lovering <[email protected]>"]
license = "MIT"

[tool.poetry.dependencies]
python = "3.10.*"

# See https://bot-core.pythondiscord.com/ for docs.
pydis-core = "9.5.1"

pydantic = {extras = ["dotenv"], version = "1.10.5"}
loguru = "0.6.0"
kubernetes_asyncio = "24.2.2"
tabulate = {extras = ["widechars"], version = "0.9.0"}
jishaku = "2.5.1"

[tool.poetry.dev-dependencies]
flake8 = "6.0.0"
flake8-annotations = "3.0.0"
flake8-bandit = "4.1.1"
flake8-docstrings = "1.7.0"
flake8-isort = "6.0.0"

black = "23.3.0"
taskipy = "1.10.4"
isort = "5.12.0"


[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"