django-defender/setup.py

49 lines
1.9 KiB
Python
Raw Normal View History

2014-09-24 00:31:17 +00:00
#!/usr/bin/env python
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
2015-02-26 17:42:47 +00:00
version = '0.2.1'
2014-09-24 00:31:17 +00:00
setup(name='django-defender',
version=version,
description="redis based Django app that locks out users after too "
"many failed login attempts.",
2015-02-24 20:31:01 +00:00
long_description="redis based Django app based on speed, that locks out"
"users after too many failed login attempts.",
2014-09-24 00:31:17 +00:00
classifiers=[
'Development Status :: 4 - Beta',
'Framework :: Django',
'Intended Audience :: Developers',
2015-02-15 17:59:14 +00:00
'License :: OSI Approved :: Apache Software License',
2014-09-24 00:31:17 +00:00
'Operating System :: OS Independent',
'Programming Language :: Python',
2015-01-01 17:58:09 +00:00
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: Implementation :: PyPy',
'Programming Language :: Python :: Implementation :: CPython',
2014-09-24 00:31:17 +00:00
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
'Topic :: Security',
'Topic :: Software Development :: Libraries',
'Topic :: Software Development :: Libraries :: Python Modules', ],
2015-01-01 17:58:09 +00:00
keywords='django, cache, security, authentication, throttle, login',
2014-09-24 00:31:17 +00:00
author='Ken Cochrane',
url='https://github.com/kencochrane/django-defender',
author_email='kencochrane@gmail.com',
license='Apache 2',
packages=['defender'],
2015-02-25 16:22:19 +00:00
package_data={
"defender": ["templates/*.html",
"migrations/*.py",
"south_migrations/*.py",
"exampleapp/*.*"],
},
2015-02-26 16:25:42 +00:00
install_requires=['Django>=1.6,<1.8', 'redis==2.10.3', 'hiredis==0.1.4', 'mockredispy==2.9.0.10'],
tests_require=['mock', 'mockredispy', 'coverage', 'celery'],
2014-09-24 00:31:17 +00:00
)