-
Notifications
You must be signed in to change notification settings - Fork 241
/
pyproject.toml
119 lines (104 loc) · 2.58 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
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
[build-system]
requires = ["pdm-backend"]
build-backend = "pdm.backend"
[project]
authors = [
{name = "James Bennett"},
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Web Environment",
"Framework :: Django",
"Framework :: Django :: 4.2",
"Framework :: Django :: 5.0",
"Framework :: Django :: 5.1",
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Utilities",
]
name = "django-registration"
description = "An extensible user-registration application for Django."
keywords = ["django", "security", "auth", "authentication"]
license = {text = "BSD-3-Clause"}
readme = "README.rst"
requires-python = ">=3.9"
version = "5.1.1a0"
dependencies = [
"Django>=4.2",
"confusable-homoglyphs>=3.0",
]
[project.urls]
"Documentation" = "https://django-registration.readthedocs.io/"
"Source Code" = "https://github.com/ubernostrum/django-registration"
[dependency-groups]
tests = ["nox"]
[tool.bandit]
exclude_dirs = ["src/django_registration/_backports.py"]
skips = ["B101"]
[tool.black]
target-version = ["py39", "py310", "py311", "py312", "py313"]
[tool.check-manifest]
ignore-bad-ideas = ["*.mo"]
[tool.check-wheel-contents]
ignore = ["W004"]
[tool.coverage.paths]
source = ["src", ".nox/tests_with_coverage*/**/site-packages"]
[tool.coverage.report]
exclude_lines = [
"pragma: no cover",
"def __str__",
"raise NotImplementedError",
]
fail_under = 100
[tool.coverage.run]
branch = true
parallel = true
omit = [
"*/_backports.py",
]
source = ["django-registration"]
[tool.interrogate]
exclude = [
"src/django_registration/_backports.py",
"src/django_registration/migrations",
"tests/migrations",
]
fail-under = 100
ignore-regex = [".*Meta.*"]
ignore-init-method = true
ignore-init-module = true
ignore-magic = true
[tool.isort]
profile = "black"
[tool.pdm]
distribution = true
[tool.pdm.build]
source-includes = [
".editorconfig",
".flake8",
".pre-commit-config.yaml",
".readthedocs.yaml",
"AUTHORS",
"CONTRIBUTING.rst",
"docs/",
"noxfile.py",
"pdm.lock",
"runtests.py",
"tests/",
]
[tool.pylint]
disable = [
"duplicate-code",
"logging-fstring-interpolation",
"missing-class-docstring",
"missing-module-docstring",
"too-many-ancestors",
]