-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathsetup.py
28 lines (26 loc) · 1.06 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
#!/usr/bin/env python
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
Version = '0.1.1'
setup(name='django-admin-ip-whitelist',
version=Version,
# install_requires='redis',
description="Django middleware to allow access to /admin only for users, whose IPs are in the white list",
long_description="django-admin-ip-whitelist is a django middleware app to allow access to /admin by IP addresses",
author="dvska",
url="http://github.com/dvska/django-admin-ip-whitelist",
packages=['admin_ip_whitelist'],
license='Apache',
platforms='Posix; MacOS X;',
classifiers=[
'Intended Audience :: Developers',
'License :: OSI Approved :: Apache Software License',
"Operating System :: OS Independent",
"Programming Language :: Python",
'Topic :: Internet :: WWW/HTTP',
'Topic :: Software Development :: Libraries :: Application Frameworks',
'Topic :: Software Development :: Libraries :: Python Modules',
],
)