django-csp-advanced/setup.py

45 lines
1.6 KiB
Python
Raw Normal View History

2017-07-15 01:35:55 -04:00
#!/usr/bin/env python
2022-10-30 18:41:44 -04:00
import os
2017-07-15 01:35:55 -04:00
from setuptools import setup, find_packages
2022-10-30 18:41:44 -04:00
with open(os.path.join(os.path.dirname(__file__), 'README.md'), encoding='utf-8') as f:
readme = f.read()
2017-07-15 01:35:55 -04:00
setup(
name='django-csp-advanced',
2022-10-30 18:41:44 -04:00
version='0.1.0',
2017-07-15 01:35:55 -04:00
description='Provides a powerful interface to CSP headers for Django applications.',
2022-10-30 18:41:44 -04:00
long_description=readme,
long_description_content_type='text/markdown',
2017-07-15 01:35:55 -04:00
author='Quantum',
author_email='quantum@dmoj.ca',
url='https://github.com/quantum5/django-csp-advanced',
keywords='django csp security',
packages=find_packages(),
include_package_data=True,
license='GNU AGPLv3',
classifiers=[
2022-10-30 18:41:44 -04:00
'Development Status :: 4 - Beta',
2017-07-15 01:35:55 -04:00
'Environment :: Web Environment',
'Framework :: Django',
2022-10-30 18:41:44 -04:00
'Framework :: Django :: 3.2',
'Framework :: Django :: 4.0',
'Framework :: Django :: 4.1',
2017-07-15 01:35:55 -04:00
'Intended Audience :: Developers',
'Intended Audience :: System Administrators',
'License :: OSI Approved :: GNU Affero General Public License v3',
'Operating System :: OS Independent',
2022-10-30 18:41:44 -04:00
'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',
2017-07-15 01:35:55 -04:00
'Topic :: Internet :: WWW/HTTP',
'Topic :: Security',
'Topic :: Software Development :: Libraries :: Python Modules',
],
zip_safe=False,
)