setup.py 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. #!/usr/bin/env python
  2. # -*- coding: utf-8 -*-
  3. import os
  4. from setuptools import setup, find_packages
  5. VERSION = '1.5.0'
  6. setup(
  7. name='django-axes',
  8. version=VERSION,
  9. description="Keep track of failed login attempts in Django-powered sites.",
  10. long_description=(
  11. open("README.rst").read() + '\n' +
  12. open("CHANGES.txt").read()),
  13. keywords='authentication, django, pci, security',
  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 :: Internet :: WWW/HTTP :: WSGI :: Middleware',
  36. 'Topic :: Security',
  37. 'Topic :: System :: Logging',
  38. ],
  39. zip_safe=False,
  40. )