-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
26 lines (23 loc) · 888 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
from setuptools import setup
_name = 'multildap'
def readme():
with open('README.md') as f:
return f.read()
setup(name=_name,
version='0.3.3',
zip_safe = False,
description="LDAP client or proxy to multiple LDAP server",
long_description=readme(),
long_description_content_type="text/markdown",
classifiers=['Development Status :: 5 - Production/Stable',
'License :: OSI Approved :: BSD License',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 3'],
url='https://github.com/peppelinux/pyMultiLDAP',
author='Giuseppe De Marco',
author_email='giuseppe.demarco@unical.it',
license='BSD',
scripts=['{}/multildapd.py'.format(_name)],
packages=[_name, 'multildap/satosa'],
install_requires=['ldap3', 'gevent'],
)