Updating authors. Version bump.

--HG--
extra : rebase_source : 8fdd7f6c7a4c86df8074ea0f7222eff0c7a3b5ca
This commit is contained in:
Josh VanderLinden 2010-12-27 21:51:51 -05:00
parent 7af0764340
commit dc1235b6a9
2 changed files with 4 additions and 4 deletions

View file

@ -1,4 +1,4 @@
VERSION = (1, 0, 0, 'rc2')
VERSION = (1, 2, 0, 'rc1')
def get_version():
return '%s.%s.%s-%s' % VERSION

View file

@ -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,
)