|
1 | 1 | [build-system]
|
2 |
| -requires = ["setuptools>=61.2"] |
3 | 2 | build-backend = "setuptools.build_meta"
|
| 3 | +requires = [ |
| 4 | + "setuptools>=61.2", |
| 5 | +] |
4 | 6 |
|
5 | 7 | [project]
|
6 |
| -name = "django_csp" |
| 8 | +name = "django-csp" |
7 | 9 | version = "3.8"
|
8 | 10 | description = "Django Content Security Policy support."
|
9 | 11 | readme = "README.rst"
|
10 |
| -authors = [{ name = "James Socol", email = "[email protected]"}] |
11 |
| -maintainers = [{ name = "Mozilla MEAO team", email = "[email protected]"}] |
12 | 12 | license = {text = "BSD"}
|
| 13 | +maintainers = [{ name = "Mozilla MEAO team", email = "[email protected]"}] |
| 14 | +authors = [{ name = "James Socol", email = "[email protected]"}] |
13 | 15 | classifiers = [
|
14 |
| - "Development Status :: 5 - Production/Stable", |
15 |
| - "Environment :: Web Environment", |
16 |
| - "Environment :: Web Environment :: Mozilla", |
17 |
| - "Programming Language :: Python", |
18 |
| - "License :: OSI Approved :: BSD License", |
19 |
| - "Operating System :: OS Independent", |
20 |
| - "Intended Audience :: Developers", |
21 |
| - "Topic :: Software Development :: Libraries :: Python Modules", |
22 |
| - "Programming Language :: Python", |
23 |
| - "Programming Language :: Python :: 3", |
24 |
| - "Programming Language :: Python :: 3.8", |
25 |
| - "Programming Language :: Python :: 3.9", |
26 |
| - "Programming Language :: Python :: 3.10", |
27 |
| - "Programming Language :: Python :: 3.11", |
28 |
| - "Programming Language :: Python :: 3.12", |
29 |
| - "Programming Language :: Python :: Implementation :: PyPy", |
30 |
| - "Programming Language :: Python :: Implementation :: CPython", |
31 |
| - "Framework :: Django :: 3.2", |
32 |
| - "Framework :: Django :: 4.2", |
33 |
| - "Framework :: Django :: 5.0", |
| 16 | + "Development Status :: 5 - Production/Stable", |
| 17 | + "Environment :: Web Environment", |
| 18 | + "Environment :: Web Environment :: Mozilla", |
| 19 | + "Framework :: Django :: 3.2", |
| 20 | + "Framework :: Django :: 4.2", |
| 21 | + "Framework :: Django :: 5.0", |
| 22 | + "Intended Audience :: Developers", |
| 23 | + "License :: OSI Approved :: BSD License", |
| 24 | + "Operating System :: OS Independent", |
| 25 | + "Programming Language :: Python", |
| 26 | + "Programming Language :: Python", |
| 27 | + "Programming Language :: Python :: 3", |
| 28 | + "Programming Language :: Python :: 3.8", |
| 29 | + "Programming Language :: Python :: 3.9", |
| 30 | + "Programming Language :: Python :: 3.10", |
| 31 | + "Programming Language :: Python :: 3.11", |
| 32 | + "Programming Language :: Python :: 3.12", |
| 33 | + "Programming Language :: Python :: Implementation :: CPython", |
| 34 | + "Programming Language :: Python :: Implementation :: PyPy", |
| 35 | + "Topic :: Software Development :: Libraries :: Python Modules", |
| 36 | +] |
| 37 | +dependencies = [ |
| 38 | + "Django>=3.2", |
34 | 39 | ]
|
35 |
| -dependencies = ["Django>=3.2"] |
36 |
| - |
37 |
| -[project.urls] |
38 |
| -Homepage = "http://github.com/mozilla/django-csp" |
39 |
| -Documentation = "http://django-csp.readthedocs.org/" |
40 |
| -Changelog = "https://github.com/mozilla/django-csp/blob/main/CHANGES" |
41 |
| -"Bug Tracker" = "https://github.com/mozilla/django-csp/issues" |
42 |
| -"Source Code" = "https://github.com/mozilla/django-csp" |
43 |
| - |
44 | 40 | [project.optional-dependencies]
|
| 41 | +jinja2 = [ |
| 42 | + "jinja2>=2.9.6", |
| 43 | +] |
45 | 44 | tests = [
|
46 |
| - "pytest", |
47 |
| - "pytest-cov", |
48 |
| - "pytest-django", |
49 |
| - "pytest-ruff", |
50 |
| - "jinja2>=2.9.6", |
| 45 | + "jinja2>=2.9.6", |
| 46 | + "pytest", |
| 47 | + "pytest-cov", |
| 48 | + "pytest-django", |
| 49 | + "pytest-ruff", |
51 | 50 | ]
|
52 |
| -jinja2 = ["jinja2>=2.9.6"] |
| 51 | +[project.urls] |
| 52 | +"Bug Tracker" = "https://github.com/mozilla/django-csp/issues" |
| 53 | +Changelog = "https://github.com/mozilla/django-csp/blob/main/CHANGES" |
| 54 | +Documentation = "http://django-csp.readthedocs.org/" |
| 55 | +Homepage = "http://github.com/mozilla/django-csp" |
| 56 | +"Source Code" = "https://github.com/mozilla/django-csp" |
53 | 57 |
|
54 | 58 | [tool.setuptools]
|
55 | 59 | zip-safe = false
|
|
0 commit comments