setup.py 1.4 KB

12345678910111213141516171819202122232425262728293031
  1. #!/usr/bin/env python
  2. from setuptools import setup
  3. setup(
  4. name="django-auth-ldap",
  5. version="1.0.7",
  6. description="Django LDAP authentication backend",
  7. long_description="""This is a Django authentication backend that authenticates against an LDAP service. Configuration can be as simple as a single distinguished name template, but there are many rich configuration options for working with users, groups, and permissions.
  8. This package requires at least Python 2.3, Django 1.0, and python-ldap 2.0. Documentation can be found at http://packages.python.org/django-auth-ldap/.
  9. """,
  10. url="http://bitbucket.org/psagers/django-auth-ldap/",
  11. author="Peter Sagerson",
  12. author_email="psagers_pypi@ignorare.net",
  13. license="BSD",
  14. packages=["django_auth_ldap"],
  15. classifiers=[
  16. "Development Status :: 5 - Production/Stable",
  17. "Environment :: Web Environment",
  18. "Programming Language :: Python",
  19. "Framework :: Django",
  20. "Intended Audience :: Developers",
  21. "Intended Audience :: System Administrators",
  22. "License :: OSI Approved :: BSD License",
  23. "Topic :: Internet :: WWW/HTTP",
  24. "Topic :: System :: Systems Administration :: Authentication/Directory :: LDAP",
  25. "Topic :: Software Development :: Libraries :: Python Modules",
  26. ],
  27. keywords=["django", "ldap", "authentication", "auth"],
  28. )