-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpyproject.toml
88 lines (79 loc) · 1.64 KB
/
pyproject.toml
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
[project]
name = "cappuccino"
description = "Just another IRC bot."
authors = [{ name = "Lee Watson", email = "[email protected]" }]
version = "1.16.0"
license = "GPL-3.0-only"
requires-python = ">=3.13,<3.14"
dependencies = [
"irc3 (>=1.1.0,<2.0.0)",
"markovify (>=0.9.0,<1.0.0)",
"pylast (>=5.0.0,<6.0.0)",
"ujson (>=5.1.0,<6.0.0)",
"requests (>=2.27.0,<3.0.0)",
"sentry-sdk (>=2.8.0,<3.0.0)",
"urllib3 (>=2.2.2,<3.0.0)",
"beautifulsoup4 (>=4.10.0,<5.0.0)",
"bottle (>=0.13.0,<=1.0.0)",
"sqlalchemy[postgresql] (>=1.4.0,<2.0.0)",
"alembic (>=1.7.0,<2.0.0)",
"humanize (>=4.0.0,<5.0.0)",
"html5lib (>=1.1,<2.0)",
"ircstyle (>=0.1.1)",
"pyyaml (>=6.0.0,<7.0.0)",
"influxdb-client (>=1.26.0,<2.0.0)",
]
[project.optional-dependencies]
dev = [
"pre-commit (>=4.0.0,<5.0.0)",
"pre-commit-hooks (>=5.0.0,<6.0.0)",
"ruff (>=0.9.0,<1.0.0)",
"shellcheck-py (>=0.10.0.1)",
]
docker = ["jinja2 (>=3.1.3,<4.0.0)"]
[tool.poetry]
package-mode = false
requires-poetry = ">=2.0"
[tool.ruff]
force-exclude = true
[tool.ruff.lint]
select = [
"A",
"B",
"BLE",
"C4",
"C90",
"DTZ",
"E",
"ERA",
"F",
"FIX",
"FURB",
"I",
"N",
"PL",
"PTH",
"Q",
"RET",
"RSE",
"RUF",
"S",
"SIM",
"SLF",
"T10",
"T20",
"TID",
"UP",
"W",
"YTT",
]
# ruff format compatibility
ignore = ["E501"]
extend-ignore = ["RUF012", "PLR09", "PLW2901"]
[tool.ruff.lint.extend-per-file-ignores]
"alembic/*" = ["ERA001"]
[tool.ruff.format]
line-ending = "lf"
[build-system]
requires = ["poetry-core>=2.0"]
build-backend = "poetry.masonry.api"