mirror of
https://github.com/jazzband/django-axes.git
synced 2026-03-16 22:30:23 +00:00
Added six as requirement
This commit is contained in:
parent
5d61187348
commit
d9e8b8cd88
1 changed files with 3 additions and 1 deletions
4
setup.py
4
setup.py
|
|
@ -16,7 +16,7 @@ setup(
|
|||
description="Keep track of failed login attempts in Django-powered sites.",
|
||||
long_description=readme,
|
||||
keywords='django, security, authentication',
|
||||
author='Josh VanderLinden, Philip Neustrom, Michael Blume',
|
||||
author='Josh VanderLinden, Philip Neustrom, Michael Blume, Camilo Nova',
|
||||
author_email='codekoala@gmail.com',
|
||||
maintainer='Alex Clark',
|
||||
maintainer_email='aclark@aclark.net',
|
||||
|
|
@ -24,6 +24,7 @@ setup(
|
|||
license='MIT',
|
||||
package_dir={'axes': 'axes'},
|
||||
include_package_data=True,
|
||||
install_requires=['six>=1.2'],
|
||||
packages=find_packages(),
|
||||
classifiers=[
|
||||
'Development Status :: 5 - Production/Stable',
|
||||
|
|
@ -35,6 +36,7 @@ setup(
|
|||
'Operating System :: OS Independent',
|
||||
'Programming Language :: Python',
|
||||
'Programming Language :: Python :: 2.7',
|
||||
'Programming Language :: Python :: 3',
|
||||
'Topic :: Internet :: Log Analysis',
|
||||
'Topic :: Internet :: WWW/HTTP :: WSGI :: Middleware',
|
||||
'Topic :: Security',
|
||||
|
|
|
|||
Loading…
Reference in a new issue