-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
92 lines (84 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
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
[tool.poetry]
name = "discordexport"
version = "0.1.0"
description = "Export Discord messages to multiple formats"
authors = ["Sebastien Waegeneire <sebastien@waegeneire.com>"]
readme = "README.md"
[tool.poetry.scripts]
discordexport = "discordexport:main"
[tool.poetry.dependencies]
python = "^3.11"
typer = "^0.9.0"
rich = "^13.5.2"
shellingham = "^1.5.3"
plyvel = "^1.5.0"
simple-term-menu = "^1.6.1"
requests = "^2.31.0"
[tool.poetry.group.test.dependencies]
pytest = "^7.4.0"
[tool.poetry.group.dev.dependencies]
nox = "^2023.4.22"
black = "^23.7.0"
ruff = "^0.0.285"
mypy = "^1.5.1"
types-requests = "^2.31.0.2"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.mypy]
strict = true
[tool.black]
line-length = 88
[tool.ruff]
select = [
"F",
"E",
"W",
"C90",
"I",
"N",
"UP",
"YTT",
"ANN",
"ASYNC",
"S",
"BLE",
"B",
"A",
"COM",
"CPY",
"C4",
"DTZ",
"T10",
"EM",
"EXE",
"ISC",
"ICN",
"G",
"INP",
"PIE",
"PYI",
"PT",
"Q",
"RSE",
"RET",
"SLF",
"SLOT",
"SIM",
"TID",
"TCH",
"INT",
"ARG",
"PTH",
"ERA",
"PD",
"PGH",
"PL",
"TRY",
"FLY",
"PERF",
"RUF",
]
ignore = ["G004", "PLR2004", "DTZ005", "PLR0913"]
unfixable = ["F841", "ERA001"]
line-length = 88