-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
70 lines (66 loc) · 1.38 KB
/
Copy pathpyproject.toml
File metadata and controls
70 lines (66 loc) · 1.38 KB
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
[project]
name = "crud-auth-github"
version = "2"
description = ""
authors = [{name = "piwero", email = "[email protected]"}]
readme = "README.md"
requires-python = ">=3.12"
dependencies = [
"asgiref>=3.12.1",
"crispy-bootstrap4>=2026.2",
"Django>=6.0.7",
"django-allauth[socialaccount]>=65.18.0",
"django-crispy-forms>=2.6",
"dj-database-url>=3.1.2",
"gunicorn>=26.0.0",
"psycopg2-binary>=2.9.12",
"python-decouple>=3.8",
"sqlparse>=0.5.5",
"whitenoise>=6.12.0",
]
[project.optional-dependencies]
dev = [
"django-debug-toolbar>=7.0.0",
"django-extensions>=4.1",
"django-stubs>=4.2.0",
"ty>=0.0.63",
"ipdb>=0.13.13",
"pre-commit>=4.6.1",
"pytest>=9.1.1",
"pytest-cov>=7.1.0",
"pytest-django>=4.12.0",
"pytest-xdist>=3.8.0",
"ruff>=0.16.0",
]
[tool.pytest.ini_options]
DJANGO_SETTINGS_MODULE = "core.settings.test_settings"
python_files = ["test_*.py", "*_test.py", "testing/python/*.py"]
[tool.ruff]
line-length = 88
target-version = "py312"
exclude = [
".bzr",
".direnv",
".eggs",
".git",
".hg",
".mypy_cache",
".nox",
".pants.d",
".pytype",
".ruff_cache",
".svn",
".tox",
".venv",
"__pypackages__",
"_build",
"buck-out",
"build",
"dist",
"node_modules",
"venv",
"**/migrations",
]
[tool.ruff.lint]
select = ["E", "F", "I"]
ignore = ["E501"]