Skip to content

Commit

Permalink
Move setup.py stuff to setup.cfg
Browse files Browse the repository at this point in the history
  • Loading branch information
hmpf committed Feb 22, 2024
1 parent 7200b16 commit a89e4fa
Show file tree
Hide file tree
Showing 2 changed files with 55 additions and 90 deletions.
55 changes: 55 additions & 0 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -1,3 +1,58 @@
[metadata]
name = django_csp
version = 3.8rc
description = Django Content Security Policy support.
long_description= file: README.rst
author = James Socol
author_email = [email protected]
maintainer = Mozilla MEAO team
maintainer_email = [email protected]
url = http://github.com/mozilla/django-csp
license = BSD
classifiers =
Development Status :: 5 - Production/Stable
Environment :: Web Environment
Environment :: Web Environment :: Mozilla
Programming Language :: Python
License :: OSI Approved :: BSD License
Operating System :: OS Independent
Intended Audience :: Developers
Topic :: Software Development :: Libraries :: Python Modules
Programming Language :: Python
Programming Language :: Python :: 3
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.11
Programming Language :: Python :: 3.12
Programming Language :: Python :: Implementation :: PyPy
Programming Language :: Python :: Implementation :: CPython
Framework :: Django :: 3.2
Framework :: Django :: 4.2
Framework :: Django :: 5.0
project_urls =
Documentation = http://django-csp.readthedocs.org/
Changelog = https://github.com/mozilla/django-csp/blob/main/CHANGES
Bug Tracker = https://github.com/mozilla/django-csp/issues
Source Code = https://github.com/mozilla/django-csp


[options]
packages = find:
install_requires = Django>=3.2
zip_safe=False
include_package_data = True

[options.extras_require]
tests =
pytest
pytest-cov
pytest-django
pytest-ruff
jinja2>=2.9.6
jinja2 =
jinja2>=2.9.6

[tool:pytest]
addopts = -vs --tb=short --ruff --ruff-format

Expand Down
90 changes: 0 additions & 90 deletions setup.py

This file was deleted.

0 comments on commit a89e4fa

Please sign in to comment.