setup.py 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. #!/usr/bin/env python
  2. from setuptools import setup
  3. setup(
  4. name="django-auth-ldap",
  5. version="1.2.0",
  6. description="Django LDAP authentication backend",
  7. long_description=open('README').read(),
  8. url="http://bitbucket.org/psagers/django-auth-ldap/",
  9. author="Peter Sagerson",
  10. author_email="psagers.pypi@ignorare.net",
  11. license="BSD",
  12. packages=["django_auth_ldap"],
  13. classifiers=[
  14. "Development Status :: 5 - Production/Stable",
  15. "Environment :: Web Environment",
  16. "Programming Language :: Python",
  17. "Programming Language :: Python :: 2",
  18. "Programming Language :: Python :: 2.6",
  19. "Programming Language :: Python :: 2.7",
  20. "Programming Language :: Python :: 3",
  21. "Programming Language :: Python :: 3.3",
  22. "Programming Language :: Python :: 3.4",
  23. "Framework :: Django",
  24. "Intended Audience :: Developers",
  25. "Intended Audience :: System Administrators",
  26. "License :: OSI Approved :: BSD License",
  27. "Topic :: Internet :: WWW/HTTP",
  28. "Topic :: System :: Systems Administration :: Authentication/Directory :: LDAP",
  29. "Topic :: Software Development :: Libraries :: Python Modules",
  30. ],
  31. keywords=["django", "ldap", "authentication", "auth"],
  32. install_requires=[
  33. "django",
  34. "python-ldap >= 2.0",
  35. ],
  36. setup_requires=[
  37. "setuptools >= 0.6c11",
  38. ],
  39. tests_require=[
  40. "mockldap >= 0.2",
  41. ]
  42. )