-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
60 lines (54 loc) · 1.26 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
[tool.ruff]
exclude = ["examples", "docs", "build"]
select = [
"E",
"F",
"I",
"TCH",
"N",
"D2",
"D3",
"D415",
"D417",
"D418",
"D419",
"Q",
"RSE",
"SIM",
"RUF",
]
ignore = ["F405", "F403", "E501", "D203", "D205", "D213", "RUF001"]
fixable = ["I", "TCH", "D"]
line-length = 120
target-version = "py311"
[tool.mypy]
ignore_errors = true # I use pyright only because mypy dumb
[tool.pyright]
pythonVersion = "3.11"
typeCheckingMode = "basic"
[tool.poetry]
name = "snedbot"
version = "0.1.0" # I do not actually update this, lol
description = "Your friendly neighbourhood multi-purpose Discord bot."
authors = ["hypergonial <[email protected]>"]
license = "GNU GPL-v3"
[tool.poetry.dependencies]
python = ">=3.11,<3.13"
dateparser = "^1.1.8"
psutil = "^5.9.6"
Pillow = "^10.2.0"
asyncpg = "^0.28.0"
Levenshtein = "^0.23.0"
uvloop = {version = "==0.18.0", platform="linux"}
aiodns = "~=3.1.1"
Brotli = "~=1.0"
ciso8601 = "~=2.3"
kosu = {git = "https://github.com/hypergonial/kosu.git"}
hikari-lightbulb = "~=2.3.5"
hikari-miru = "~=3.3.1"
[tool.poetry.dev-dependencies]
nox = "^2023.4.22"
ruff = "^0.1.14"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"