mirror of
https://github.com/quantum5/django-csp-advanced.git
synced 2025-04-25 03:31:58 -04:00
Compare commits
No commits in common. "v0.1.0" and "master" have entirely different histories.
20
setup.py
20
setup.py
|
@ -1,17 +1,11 @@
|
||||||
#!/usr/bin/env python
|
#!/usr/bin/env python
|
||||||
import os
|
|
||||||
|
|
||||||
from setuptools import setup, find_packages
|
from setuptools import setup, find_packages
|
||||||
|
|
||||||
with open(os.path.join(os.path.dirname(__file__), 'README.md'), encoding='utf-8') as f:
|
|
||||||
readme = f.read()
|
|
||||||
|
|
||||||
setup(
|
setup(
|
||||||
name='django-csp-advanced',
|
name='django-csp-advanced',
|
||||||
version='0.1.0',
|
version='0.0.1',
|
||||||
description='Provides a powerful interface to CSP headers for Django applications.',
|
description='Provides a powerful interface to CSP headers for Django applications.',
|
||||||
long_description=readme,
|
|
||||||
long_description_content_type='text/markdown',
|
|
||||||
author='Quantum',
|
author='Quantum',
|
||||||
author_email='quantum@dmoj.ca',
|
author_email='quantum@dmoj.ca',
|
||||||
url='https://github.com/quantum5/django-csp-advanced',
|
url='https://github.com/quantum5/django-csp-advanced',
|
||||||
|
@ -20,22 +14,14 @@ setup(
|
||||||
include_package_data=True,
|
include_package_data=True,
|
||||||
license='GNU AGPLv3',
|
license='GNU AGPLv3',
|
||||||
classifiers=[
|
classifiers=[
|
||||||
'Development Status :: 4 - Beta',
|
'Development Status :: 3 - Alpha',
|
||||||
'Environment :: Web Environment',
|
'Environment :: Web Environment',
|
||||||
'Framework :: Django',
|
'Framework :: Django',
|
||||||
'Framework :: Django :: 3.2',
|
|
||||||
'Framework :: Django :: 4.0',
|
|
||||||
'Framework :: Django :: 4.1',
|
|
||||||
'Intended Audience :: Developers',
|
'Intended Audience :: Developers',
|
||||||
'Intended Audience :: System Administrators',
|
'Intended Audience :: System Administrators',
|
||||||
'License :: OSI Approved :: GNU Affero General Public License v3',
|
'License :: OSI Approved :: GNU Affero General Public License v3',
|
||||||
'Operating System :: OS Independent',
|
'Operating System :: OS Independent',
|
||||||
'Programming Language :: Python :: 3 :: Only',
|
'Programming Language :: Python',
|
||||||
'Programming Language :: Python :: 3.7',
|
|
||||||
'Programming Language :: Python :: 3.8',
|
|
||||||
'Programming Language :: Python :: 3.9',
|
|
||||||
'Programming Language :: Python :: 3.10',
|
|
||||||
'Programming Language :: Python :: 3.11',
|
|
||||||
'Topic :: Internet :: WWW/HTTP',
|
'Topic :: Internet :: WWW/HTTP',
|
||||||
'Topic :: Security',
|
'Topic :: Security',
|
||||||
'Topic :: Software Development :: Libraries :: Python Modules',
|
'Topic :: Software Development :: Libraries :: Python Modules',
|
||||||
|
|
Loading…
Reference in a new issue