-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
61 lines (55 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
[project]
name = "gsl"
dynamic = ["version"]
authors = [{ name = "Agnès Haasser", email = "[email protected]" }]
readme = "README.md"
license = { file = "LICENSE" }
dependencies = [
"celery",
"dj-database-url",
"django",
"django-celery-beat",
"django-csp",
"django-dsfr",
"django-referrer-policy",
"django_celery_results",
"django-import-export",
"django-json-widget",
"django-htmx",
"gunicorn",
"mozilla-django-oidc",
"psycopg[binary]",
"python-dotenv",
"redis",
"sentry-sdk",
"whitenoise",
]
[tool.setuptools]
packages = ["gsl"]
[build-system]
requires = ["setuptools", "setuptools_scm"]
build-backend = "setuptools.build_meta"
[project.optional-dependencies]
dev = [
"diff-cover",
"django-extensions",
"django-query-counter",
"djlint",
"factory_boy",
"ipython",
"pip-tools",
"pre-commit",
"pytest-cov",
"pytest-django",
"pytest-ruff",
"pytest-xdist",
"pytest",
"ruff",
]
[tool.pytest.ini_options]
DJANGO_SETTINGS_MODULE = "gsl.settings"
addopts = "--ruff --create-db --cov-report xml --cov-report term-missing --cov=. -p no:warnings"
[tool.ruff.lint]
exclude = ["**/migrations/*.py"]
ignore = ["E501"]
select = ["I", "F", "E", "DJ", "C90"]