diff options
Diffstat (limited to 'ipapython')
| -rwxr-xr-x | ipapython/setup.py | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/ipapython/setup.py b/ipapython/setup.py index 47acdd6f2..0f181ab6a 100755 --- a/ipapython/setup.py +++ b/ipapython/setup.py @@ -38,4 +38,27 @@ if __name__ == '__main__': "ipapython.secrets", "ipapython.install" ], + install_requires=[ + "cffi", + "custodia", + "cryptography", + "dnspython", + "gssapi", + "jwcrypto", + "ipaplatform", + # "ipalib", # circular dependency + "pyldap", + "lxml", + "netaddr", + "netifaces", + "python-nss", + "requests", + "six", + ], + setup_requires=[ + "wheel", + ], + extras_require={ + ":python_version<'3'": ["enum34"], + }, ) |
