forked from rclsilver/django-lemonldap
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
34 lines (31 loc) · 1.13 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
#!/usr/bin/python
from distutils.core import setup
from lemonldap import __version__
setup(
name='django-lemonldap',
version=__version__,
description='LemonLDAP: django authentication system to be used with LemonLDAP::NG',
long_description='LemonLDAP: Allow users to be authenticated through LemonLDAP::NG in django applications',
author='Thomas Betrancourt',
author_email='thomas@betrancourt.net',
url='https://github.com/rclsilver/django-lemonldap',
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: Plugins',
'Framework :: Django',
'Intended Audience :: Developers',
'Intended Audience :: System Administrators',
'License :: OSI Approved :: Apache Software License',
'Natural Language :: English',
'Natural Language :: French',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Internet :: WWW/HTTP :: Session',
'Topic :: Security',
'Topic :: Software Development :: Libraries',
],
packages=[
'lemonldap',
'lemonldap.auth',
],
)