Bring in LDAP

This commit is contained in:
Roland Hedberg 2014-12-16 12:05:33 +01:00
parent 07db0b507b
commit a059ea050e
1 changed files with 3 additions and 2 deletions

View File

@ -57,11 +57,12 @@ setup(
"Topic :: Software Development :: Libraries :: Python "
"Modules"],
extras_require={
'develop': ["cherrypy==3.2.4", "python-ldap"],
'develop': ["cherrypy==3.2.4"],
},
install_requires=[
"requests", "pycrypto>=2.6.1", "pyjwkest>=0.5.1",
"mako", "beaker", "alabaster", "pyOpenSSL"] + extra_install_requires,
"mako", "beaker", "alabaster", "pyOpenSSL",
"python-ldap"] + extra_install_requires,
tests_require=['pytest'],
zip_safe=False,
cmdclass={'test': PyTest},