-
Notifications
You must be signed in to change notification settings - Fork 25
/
setup.py
28 lines (26 loc) · 1006 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
#!/usr/bin/env python
from distutils.core import setup
setup(
name="django-auth-ldap",
version="1.1",
description="Django LDAP authentication backend",
long_description=open('README.rst').read(),
url="http://bitbucket.org/psagers/django-auth-ldap/",
author="Peter Sagerson",
author_email="[email protected]",
license="BSD",
packages=["django_auth_ldap"],
classifiers=[
"Development Status :: 5 - Production/Stable",
"Environment :: Web Environment",
"Programming Language :: Python",
"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"],
)