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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
|
[project]
authors = [
{name = "Python Discord", email = "[email protected]"},
]
license = {text = "MIT"}
requires-python = "==3.14.*"
dependencies = [
"pydis-core[all]==11.8.0",
"aiohttp==3.13.2",
"arrow==1.4.0",
"beautifulsoup4==4.14.2",
"deepdiff==8.6.1",
"emoji==2.15.0",
"feedparser==6.0.12",
"lxml==6.0.2",
"markdownify==1.2.0",
"pydantic==2.12.3",
"pydantic-settings==2.11.0",
"python-dateutil==2.9.0.post0",
"python-frontmatter==1.1.0",
"rapidfuzz==3.14.1",
"regex==2025.10.23",
"sentry-sdk==2.43.0",
"tenacity==9.1.2",
"tldextract==5.3.0",
"yarl==1.22.0",
]
name = "bot"
version = "1.0.1"
description = "The community bot for the Python Discord community."
[tool.uv]
prerelease = "allow"
required-version = ">=0.9.7"
[dependency-groups]
dev = [
"coverage==7.11.0",
"httpx==0.28.1",
"pre-commit==4.3.0",
"pytest==8.4.2",
"pytest-cov==7.0.0",
"pytest-subtests==0.14.1",
"pytest-xdist==3.8.0",
"ruff==0.14.2",
"taskipy==1.14.1",
]
[tool.taskipy.tasks]
start = "python -m bot"
configure = "python -m botstrap"
lint = "pre-commit run --all-files"
precommit = "pre-commit install"
build = "docker build -t ghcr.io/python-discord/bot:latest -f Dockerfile ."
push = "docker push ghcr.io/python-discord/bot:latest"
test = "pytest -n auto --ff"
retest = "pytest -n auto --lf"
test-cov = "pytest -n auto --cov-report= --cov"
html = "coverage html"
report = "coverage report"
[tool.coverage.run]
branch = true
source_pkgs = ["bot"]
source = ["tests"]
[tool.ruff]
extend-exclude = [".cache"]
line-length = 120
output-format = "concise"
unsafe-fixes = true
[tool.ruff.lint]
select = ["ANN", "B", "C4", "D", "DTZ", "E", "F", "I", "ISC", "INT", "N", "PGH", "PIE", "Q", "RET", "RSE", "RUF", "S", "SIM", "T20", "TID", "UP", "W"]
ignore = [
"ANN002", "ANN003", "ANN204", "ANN206", "ANN401",
"B904",
"C401", "C408",
"D100", "D104", "D105", "D107", "D203", "D212", "D214", "D215", "D301",
"D400", "D401", "D402", "D404", "D405", "D406", "D407", "D408", "D409", "D410", "D411", "D412", "D413", "D414", "D416", "D417",
"E731",
"RET504",
"RUF005", "RUF012", "RUF015",
"S311",
"SIM102", "SIM108",
]
[tool.ruff.lint.flake8-tidy-imports.banned-api]
"__future__.annotations".msg = "No longer required in Python 3.14+, see https://docs.python.org/3/reference/compound_stmts.html#annotations"
[tool.ruff.lint.isort]
order-by-type = false
case-sensitive = true
combine-as-imports = true
[tool.ruff.lint.per-file-ignores]
"tests/*" = ["ANN", "D"]
[tool.pytest.ini_options]
# We don't use nose style tests so disable them in pytest.
# This stops pytest from running functions named `setup` in test files.
# See https://github.com/python-discord/bot/pull/2229#issuecomment-1204436420
addopts = "-p no:nose"
|