-
Notifications
You must be signed in to change notification settings - Fork 3
/
pyproject.toml
89 lines (78 loc) · 1.44 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
89
[tool.poetry]
name = "cappuccino"
version = "1.16.0"
description = "Just another IRC bot."
authors = ["Lee Watson <me@lwatson.dev>"]
license = "GPL-3.0"
package-mode = false
[tool.poetry.dependencies]
python = "^3.13"
irc3 = "^1.1.0"
markovify = "^0.9.0"
pylast = "^5.0.0"
ujson = "^5.1.0"
requests = "^2.27.0"
sentry-sdk = "^2.8.0"
urllib3 = "^2.2.2"
beautifulsoup4 = "^4.10.0"
bottle = "^0.13.0"
sqlalchemy = { version = "^1.4.0", extras = ["postgresql"] }
alembic = "^1.7.0"
humanize = "^4.0.0"
html5lib = "^1.1"
ircstyle = "^0.1.1"
pyyaml = "^6.0.0"
influxdb-client = "^1.26.0"
[tool.poetry.group.dev.dependencies]
pre-commit = "^3.5.0"
ruff = "^0.8.0"
pre-commit-hooks = "^4.5.0"
shellcheck-py = "^0.10.0.1"
[tool.poetry.group.docker]
optional = true
[tool.poetry.group.docker.dependencies]
Jinja2 = "^3.1.3"
[tool.ruff]
target-version = "py313"
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"]
build-backend = "poetry.masonry.api"