From 8346e1b067483d4d836627a267805bbe8d6e7efa Mon Sep 17 00:00:00 2001 From: Christian Heimes Date: Thu, 27 Oct 2016 14:04:58 +0200 Subject: Add install requirements to Python packages https://fedorahosted.org/freeipa/ticket/6468 Signed-off-by: Christian Heimes Reviewed-By: Martin Basti --- ipapython/setup.py | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) (limited to 'ipapython') 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"], + }, ) -- cgit