setup.py 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. #!/usr/bin/env python
  2. # -*- coding: utf-8 -*-
  3. import codecs
  4. from setuptools import setup, find_packages
  5. from axes import get_version
  6. setup(
  7. name='django-axes',
  8. version=get_version(),
  9. description="Keep track of failed login attempts in Django-powered sites.",
  10. long_description=(
  11. codecs.open("README.rst", encoding='utf-8').read() + '\n' +
  12. codecs.open("CHANGES.txt", encoding='utf-8').read()),
  13. keywords='authentication django pci security'.split(),
  14. author='Josh VanderLinden, Philip Neustrom, Michael Blume, Camilo Nova',
  15. author_email='codekoala@gmail.com',
  16. maintainer='Alex Clark',
  17. maintainer_email='aclark@aclark.net',
  18. url='https://github.com/django-pci/django-axes',
  19. license='MIT',
  20. package_dir={'axes': 'axes'},
  21. include_package_data=True,
  22. packages=find_packages(),
  23. classifiers=[
  24. 'Development Status :: 5 - Production/Stable',
  25. 'Environment :: Web Environment',
  26. 'Framework :: Django',
  27. 'Intended Audience :: Developers',
  28. 'Intended Audience :: System Administrators',
  29. 'License :: OSI Approved :: MIT License',
  30. 'Operating System :: OS Independent',
  31. 'Programming Language :: Python',
  32. 'Programming Language :: Python :: 2.7',
  33. 'Programming Language :: Python :: 3',
  34. 'Topic :: Internet :: Log Analysis',
  35. 'Topic :: Security',
  36. 'Topic :: System :: Logging',
  37. ],
  38. zip_safe=False,
  39. )