| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859 |
- #!/usr/bin/env python
- # -*- coding: utf-8 -*-
- from __future__ import unicode_literals
- import codecs
- from setuptools import setup, find_packages
- from axes import get_version
- setup(
- name='django-axes',
- version=get_version(),
- description='Keep track of failed login attempts in Django-powered sites.',
- long_description=(
- codecs.open('README.rst', encoding='utf-8').read() + '\n' +
- codecs.open('CHANGES.txt', encoding='utf-8').read()),
- keywords='authentication django pci security'.split(),
- author='Josh VanderLinden, Philip Neustrom, Michael Blume, Camilo Nova',
- author_email='codekoala@gmail.com',
- maintainer='Alex Clark',
- maintainer_email='aclark@aclark.net',
- url='https://github.com/jazzband/django-axes',
- license='MIT',
- package_dir={'axes': 'axes'},
- install_requires=[
- 'pytz',
- 'django',
- 'django-appconf',
- 'django-ipware>=2.0.2',
- 'win_inet_pton ; python_version < "3.4" and sys_platform == "win32"',
- ],
- include_package_data=True,
- packages=find_packages(),
- classifiers=[
- 'Development Status :: 5 - Production/Stable',
- 'Environment :: Web Environment',
- 'Framework :: Django',
- 'Framework :: Django :: 1.11',
- 'Framework :: Django :: 2.0',
- 'Framework :: Django :: 2.1',
- 'Intended Audience :: Developers',
- 'Intended Audience :: System Administrators',
- 'License :: OSI Approved :: MIT License',
- 'Operating System :: OS Independent',
- 'Programming Language :: Python',
- 'Programming Language :: Python :: 2',
- 'Programming Language :: Python :: 2.7',
- 'Programming Language :: Python :: 3',
- 'Programming Language :: Python :: 3.4',
- 'Programming Language :: Python :: 3.5',
- 'Programming Language :: Python :: 3.6',
- 'Programming Language :: Python :: 3.7',
- 'Topic :: Internet :: Log Analysis',
- 'Topic :: Security',
- 'Topic :: System :: Logging',
- ],
- zip_safe=False,
- )
|