-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpyproject.toml
87 lines (78 loc) · 1.55 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
[tool.poetry]
name = "django_project_template"
version = "0.1.0"
description = ""
authors = ["IL-studio <[email protected]>"]
readme = "README.md"
[tool.poetry.dependencies]
django = "^4.2"
django-braces = "^1.15"
django-cleanup = "^8.0"
django-environ = "^0.11.2"
django-extensions = "^3.2"
django-extra-views = "^0.14"
django-health-check = "^3.18.2"
django-loginas = "^0.3"
django-model-utils = "^4.5"
django-nplusone = "^0.0.5"
django-querycount = "^0.8.3"
django-split-settings = "^1.3"
django-spurl = "^0.6"
django-stubs = "^5.0"
ipython = "^8.25"
pillow = "^10.3"
python = "^3.11"
python-dateutil = "^2.8.2"
requests = "^2.32"
singlemodeladmin = "^0.9"
[tool.poetry.group.dev.dependencies]
covdefaults = "^2.3.0"
django-coverage-plugin = "^3.1.0"
django-debug-toolbar = "^4.4"
docutils = "^0.21.2"
psycopg2-binary = "^2.9"
ruff = "^0.4"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.ruff]
line-length = 100
exclude = [
".bzr",
".direnv",
".eggs",
".git",
".hg",
".mypy_cache",
".nox",
".pants.d",
".ruff_cache",
".svn",
".tox",
".venv",
"__pypackages__",
"_build",
"buck-out",
"build",
"dist",
"node_modules",
"venv",
".env",
".env_legacy",
]
target-version = "py311"
[tool.ruff.lint]
dummy-variable-rgx = "^(_+|(_+[a-zA-Z0-9_]*[a-zA-Z0-9]+?))$"
select = [
"E",
"F",
"I",
"T20",
"UP",
]
[tool.ruff.lint.mccabe]
max-complexity = 10
[tool.ruff.lint.per-file-ignores]
"import/*" = ["T20"]
[tool.ruff.format]
quote-style = 'single'