-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
c56ab74
commit 5dcb329
Showing
1 changed file
with
5 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,20 +7,20 @@ def readme(): | |
return f.read() | ||
|
||
setup(name=_name, | ||
version='0.2-rc', | ||
version='0.2', | ||
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'], | ||
'License :: OSI Approved :: BSD License', | ||
'Programming Language :: Python :: 2', | ||
'Programming Language :: Python :: 3'], | ||
url='https://github.com/peppelinux/{}'.format(_name), | ||
author='Giuseppe De Marco', | ||
author_email='[email protected]', | ||
license='BSD', | ||
scripts=['{}/multildapd.py'.format(_name)], | ||
packages=[_name], | ||
packages=[_name, 'multildap/satosa'], | ||
install_requires=['ldap3', 'gevent'], | ||
) |