Release 0.1.0

This commit is contained in:
Quantum 2022-10-30 18:41:44 -04:00
parent 5e96556474
commit 71a98fb979

View file

@ -1,11 +1,17 @@
#!/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.0.1', version='0.1.0',
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',
@ -14,14 +20,22 @@ setup(
include_package_data=True, include_package_data=True,
license='GNU AGPLv3', license='GNU AGPLv3',
classifiers=[ classifiers=[
'Development Status :: 3 - Alpha', 'Development Status :: 4 - Beta',
'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', 'Programming Language :: Python :: 3 :: Only',
'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',