| 1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- #!/usr/bin/env python
- from setuptools import setup
- setup(
- name="django-auth-ldap",
- version="1.2.0",
- description="Django LDAP authentication backend",
- long_description=open('README').read(),
- url="http://bitbucket.org/psagers/django-auth-ldap/",
- author="Peter Sagerson",
- author_email="psagers.pypi@ignorare.net",
- license="BSD",
- packages=["django_auth_ldap"],
- classifiers=[
- "Development Status :: 5 - Production/Stable",
- "Environment :: Web Environment",
- "Programming Language :: Python",
- "Programming Language :: Python :: 2",
- "Programming Language :: Python :: 2.6",
- "Programming Language :: Python :: 2.7",
- "Programming Language :: Python :: 3",
- "Programming Language :: Python :: 3.3",
- "Programming Language :: Python :: 3.4",
- "Framework :: Django",
- "Intended Audience :: Developers",
- "Intended Audience :: System Administrators",
- "License :: OSI Approved :: BSD License",
- "Topic :: Internet :: WWW/HTTP",
- "Topic :: System :: Systems Administration :: Authentication/Directory :: LDAP",
- "Topic :: Software Development :: Libraries :: Python Modules",
- ],
- keywords=["django", "ldap", "authentication", "auth"],
- install_requires=[
- "django",
- "python-ldap >= 2.0",
- ],
- setup_requires=[
- "setuptools >= 0.6c11",
- ],
- tests_require=[
- "mockldap >= 0.2",
- ]
- )
|