1
0
Fork 0
mirror of https://github.com/kakwa/ldapcherry synced 2025-07-04 20:37:48 +02:00

add dependency for passlib module.

This commit is contained in:
Yuusuke KOUNOIKE 2016-06-18 22:37:10 +09:00
parent c67969e2c1
commit e56835d4f4
2 changed files with 2 additions and 0 deletions

View file

@ -2,3 +2,4 @@ CherryPy>=3.0.0
PyYAML
Mako
python-ldap
passlib

View file

@ -22,6 +22,7 @@ if sys.version_info[0] == 2:
install_requires = [
'CherryPy >= 3.0.0',
'python-ldap',
'passlib',
'PyYAML',
'Mako'
],