django-axes/setup.py
Josh VanderLinden dc1235b6a9 Updating authors. Version bump.
--HG--
extra : rebase_source : 8fdd7f6c7a4c86df8074ea0f7222eff0c7a3b5ca
2010-12-27 21:51:51 -05:00

35 lines
1.2 KiB
Python

#!/usr/bin/env python
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
import axes
setup(
name='django-axes',
version=axes.get_version(),
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, Michael Blume',
author_email='codekoala@gmail.com',
url='http://bitbucket.org/codekoala/django-axes/',
license='MIT',
package_dir={'axes': 'axes'},
include_package_data=True,
packages=find_packages(),
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Web Environment',
'Framework :: Django',
'Intended Audience :: Developers',
'Intended Audience :: System Administrators',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Internet :: Log Analysis',
'Topic :: Internet :: WWW/HTTP :: WSGI :: Middleware',
'Topic :: Security',
'Topic :: System :: Logging',
],
zip_safe=False,
)