-
Notifications
You must be signed in to change notification settings - Fork 22
Expand file tree
/
Copy pathpyproject.toml
More file actions
44 lines (39 loc) · 915 Bytes
/
pyproject.toml
File metadata and controls
44 lines (39 loc) · 915 Bytes
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
[project]
name = "not-enough-mods-polling"
version = "2.0.0"
description = "An IRC bot that automatically keeps mods in Not Enough Mods up-to-date"
requires-python = ">=3.14"
dependencies = [
"aiohttp>=3.9",
"beautifulsoup4>=4.12",
"Jinja2>=3.1",
"PyYAML>=6.0",
"packaging>=23.0",
"pyparsing>=3.3.2",
]
[dependency-groups]
dev = [
"ruff>=0.15.4",
"pytest>=8.0",
"pytest-asyncio>=1.0",
"aioresponses>=0.7",
]
[tool.pytest.ini_options]
asyncio_mode = "auto"
testpaths = ["tests"]
[tool.ruff]
target-version = "py314"
line-length = 120
[tool.ruff.lint]
select = [
"F", # pyflakes
"E", # pycodestyle errors
"W", # pycodestyle warnings
"I", # isort
"UP", # pyupgrade
"B", # flake8-bugbear
"SIM", # flake8-simplify
"RUF", # ruff-specific rules
]
[tool.ruff.lint.isort]
known-first-party = ["plugins", "irc_handlers"]