-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathsetup.py
43 lines (41 loc) · 1.31 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
37
38
39
40
41
42
43
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from security.version import get_version
try:
from setuptools import setup, find_packages
except ImportError:
import ez_setup
ez_setup.use_setuptools()
from setuptools import setup, find_packages
setup(
name='django-security',
version=get_version(),
description="Django security library.",
keywords='django, throttling',
author='Lubos Matl',
author_email='[email protected]',
url='https://github.com/matllubos/django-security',
license='LGPL',
package_dir={'security': 'security'},
include_package_data=True,
packages=find_packages(),
classifiers=[
'Development Status :: 0 - Beta',
'Environment :: Web Environment',
'Framework :: Django',
'Intended Audience :: Developers',
'Intended Audience :: End Users/Desktop',
'License :: OSI Approved :: GNU LESSER GENERAL PUBLIC LICENSE (LGPL)',
'Natural Language :: Czech',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
'Topic :: Internet :: WWW/HTTP :: Site Management',
],
install_requires=[
'django>=1.6',
'django-json-field>=0.5.5',
'django-ipware>=0.1.0',
],
zip_safe=False
)