django-axes/setup.py

44 lines
1.4 KiB
Python
Raw Normal View History

#!/usr/bin/env python
# -*- coding: utf-8 -*-
import os
from setuptools import setup, find_packages
2016-01-07 12:59:29 +00:00
VERSION = '1.6.0'
setup(
name='django-axes',
2014-10-05 13:17:54 +00:00
version=VERSION,
description="Keep track of failed login attempts in Django-powered sites.",
2014-10-05 13:17:54 +00:00
long_description=(
open("README.rst").read() + '\n' +
open("CHANGES.txt").read()),
2014-10-07 11:47:37 +00:00
keywords='authentication, django, pci, security',
2014-04-09 12:25:24 +00:00
author='Josh VanderLinden, Philip Neustrom, Michael Blume, Camilo Nova',
author_email='codekoala@gmail.com',
2012-11-29 02:05:47 +00:00
maintainer='Alex Clark',
maintainer_email='aclark@aclark.net',
2014-10-07 11:47:37 +00:00
url='https://github.com/django-pci/django-axes',
license='MIT',
package_dir={'axes': 'axes'},
include_package_data=True,
packages=find_packages(),
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: Web Environment',
'Framework :: Django',
'Intended Audience :: Developers',
'Intended Audience :: System Administrators',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
2013-04-19 17:35:33 +00:00
'Programming Language :: Python :: 2.7',
2014-04-09 12:25:24 +00:00
'Programming Language :: Python :: 3',
'Topic :: Internet :: Log Analysis',
'Topic :: Internet :: WWW/HTTP :: WSGI :: Middleware',
'Topic :: Security',
'Topic :: System :: Logging',
],
zip_safe=False,
)