1
0
mirror of https://github.com/kakwa/ldapcherry synced 2024-11-24 10:14:31 +01: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'
],