-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
102 lines (92 loc) · 1.42 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
93
94
95
96
97
98
99
100
101
102
[project]
name = "ff4kb"
version = "1.0.0"
requires-python = ">=3.12"
[tool.poetry]
name = "ff4"
version = "1.0.0"
description = "ff4kb.aexoden.com"
authors = ["Jason Lynch <[email protected]>"]
license = "MIT"
readme = "README.md"
[tool.poetry.dependencies]
python = "^3.11"
django = "^5.1"
dj-database-url = "^2.3.0"
django-configurations = "^2.5"
django-debug-toolbar = "^5.0.1"
django-extensions = "^3.2.3"
django4-bootstrap-breadcrumbs = "^0.10.0"
gunicorn = "^23.0.0"
whitenoise = "^6.9.0"
[tool.poetry.group.dev.dependencies]
ruff = "^0.9.5"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.ruff]
line-length = 120
[tool.ruff.format]
line-ending = "lf"
[tool.ruff.lint]
preview = true
select = [
"A",
"ANN",
"ARG",
"ASYNC",
"B",
"BLE",
"C4",
"COM",
"CPY",
"DTZ",
"E",
"EM",
"ERA",
"EXE",
"F",
"FA",
"FBT",
"FIX",
"FURB",
"G",
"I",
"ICN",
"INP",
"ISC",
"LOG",
"N",
"PERF",
"PIE",
"PL",
"PT",
"PTH",
"PYI",
"Q",
"RET",
"RSE",
"RUF",
"S",
"SIM",
"SLF",
"SLOT",
"T10",
"TCH",
"TD",
"TID",
"TRY",
"UP",
"W",
"YTT",
]
ignore = [
"COM812",
"ISC001",
"S404",
"S603",
]
[tool.ruff.lint.flake8-copyright]
notice-rgx = "(?i)SPDX-FileCopyrightText: \\d{4}"
[tool.ruff.lint.isort]
lines-between-types = 1