diff --git a/axes/__init__.py b/axes/__init__.py index e3b5bde..bcde6ed 100644 --- a/axes/__init__.py +++ b/axes/__init__.py @@ -1,4 +1,4 @@ -VERSION = (1, 0, 0, 'rc2') +VERSION = (1, 2, 0, 'rc1') def get_version(): return '%s.%s.%s-%s' % VERSION diff --git a/setup.py b/setup.py index 732acd1..d6967a1 100644 --- a/setup.py +++ b/setup.py @@ -3,7 +3,6 @@ from setuptools import setup, find_packages import axes -import sys, os setup( name='django-axes', @@ -11,7 +10,7 @@ setup( description="Keep track of failed login attempts in Django-powered sites.", long_description=open('README.rst', 'r').read(), keywords='django, security, authentication', - author='Josh VanderLinden, Philip Neustrom', + author='Josh VanderLinden, Philip Neustrom, Michael Blume', author_email='codekoala@gmail.com', url='http://bitbucket.org/codekoala/django-axes/', license='MIT', @@ -31,5 +30,6 @@ setup( 'Topic :: Internet :: WWW/HTTP :: WSGI :: Middleware', 'Topic :: Security', 'Topic :: System :: Logging', - ] + ], + zip_safe=False, )