This repository has been archived by the owner on Dec 9, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
36 lines (33 loc) · 1.53 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
import os
from setuptools import setup
setup(name='django-referrer-policy',
version='1.0',
zip_safe=False, # eggs are the devil.
description='Referrer-Policy header implementation for Django.',
long_description=open(os.path.join(os.path.dirname(__file__),
'README.rst')).read(),
author='James Bennett',
author_email='james@b-list.org',
url='https://github.com/ubernostrum/django-referrer-policy/',
packages=['django_referrer_policy', 'django_referrer_policy.tests'],
test_suite='django_referrer_policy.runtests.run_tests',
classifiers=['Development Status :: 5 - Production/Stable',
'Environment :: Web Environment',
'Framework :: Django',
'Framework :: Django :: 1.11',
'Framework :: Django :: 2.0',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Topic :: Utilities'],
install_requires=[
'Django>=1.11',
]
)