forked from django-ldapdb/django-ldapdb
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·37 lines (35 loc) · 1.15 KB
/
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
29
30
31
32
33
34
35
36
37
#!/usr/bin/env python
from setuptools import setup
setup(
name="django-ldapdb",
version="0.3.2",
description=u"An LDAP database backend for Django",
long_description=open('README.md').read(),
url="https://github.com/jlaine/django-ldapdb",
author="Jeremy Laine",
author_email="[email protected]",
packages=['ldapdb', 'ldapdb.backends', 'ldapdb.backends.ldap', 'ldapdb.models'],
classifiers=[
"Development Status :: 5 - Production/Stable",
"Environment :: Web Environment",
"Programming Language :: Python",
"Framework :: Django",
"Intended Audience :: Developers",
"Intended Audience :: System Administrators",
"Topic :: Internet :: WWW/HTTP",
"Topic :: System :: Systems Administration :: Authentication/Directory :: LDAP",
"Topic :: Software Development :: Libraries :: Python Modules",
],
keywords=['django', 'ldap', 'database'],
install_requires=[
'django>=1.2',
'python-ldap>=2.0',
],
setup_requires=[
'setuptools>=0.6c11',
],
tests_require=[
'mockldap>=0.1',
],
test_suite = 'manage.run_tests'
)