Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Prep for 4.0b1 release #225

Merged
merged 2 commits into from
Jun 19, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
35 changes: 18 additions & 17 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,16 @@ requires = [

[project]
name = "django-csp"
version = "3.8"
version = "4.0b1"
description = "Django Content Security Policy support."
readme = "README.rst"
license = {text = "BSD"}
maintainers = [{name = "Mozilla MEAO team", email = "meao-backend@mozilla.com"}]
authors = [{name = "James Socol", email = "me@jamessocol.com"}]
license = { text = "BSD" }
maintainers = [
{ name = "Mozilla MEAO team", email = "meao-backend@mozilla.com" },
]
authors = [
{ name = "James Socol", email = "me@jamessocol.com" },
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Web Environment",
Expand All @@ -23,8 +27,7 @@ classifiers = [
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
Expand All @@ -35,32 +38,30 @@ classifiers = [
"Topic :: Software Development :: Libraries :: Python Modules",
]
dependencies = [
"Django>=3.2",
"django>=3.2",
]
[project.optional-dependencies]
jinja2 = [
optional-dependencies.jinja2 = [
"jinja2>=2.9.6",
]
tests = [
optional-dependencies.tests = [
"jinja2>=2.9.6",
"pytest",
"pytest-cov",
"pytest-django",
"pytest-ruff",
]
[project.urls]
"Bug Tracker" = "https://github.com/mozilla/django-csp/issues"
Changelog = "https://github.com/mozilla/django-csp/blob/main/CHANGES"
Documentation = "http://django-csp.readthedocs.org/"
Homepage = "http://github.com/mozilla/django-csp"
"Source Code" = "https://github.com/mozilla/django-csp"
urls."Bug Tracker" = "https://github.com/mozilla/django-csp/issues"
urls.Changelog = "https://github.com/mozilla/django-csp/blob/main/CHANGES"
urls.Documentation = "http://django-csp.readthedocs.org/"
urls.Homepage = "http://github.com/mozilla/django-csp"
urls."Source Code" = "https://github.com/mozilla/django-csp"

[tool.setuptools]
zip-safe = false
include-package-data = true

[tool.setuptools.packages]
find = {namespaces = false}
find = { namespaces = false }

[tool.pytest.ini_options]
addopts = "-vs --tb=short --ruff --ruff-format"
Expand Down