summaryrefslogtreecommitdiffstats
path: root/ipapython
diff options
context:
space:
mode:
authorChristian Heimes <cheimes@redhat.com>2017-04-10 10:00:23 +0200
committerMartin Basti <mbasti@redhat.com>2017-04-26 12:31:11 +0200
commit26ab51ddf47f421f3404709052db89f08c05adaa (patch)
tree1083fa1c0bef52502790d21f281b8156a2dffeda /ipapython
parent38276d3473ecf2a4cc5b5e2a107347f046625626 (diff)
downloadfreeipa-26ab51ddf47f421f3404709052db89f08c05adaa.tar.gz
freeipa-26ab51ddf47f421f3404709052db89f08c05adaa.tar.xz
freeipa-26ab51ddf47f421f3404709052db89f08c05adaa.zip
Correct PyPI package dependencies
* Remove unused install requires from ipapython * Add missing requirements to ipaserver * Correct dependencies for yubico otptoken * Add explicit dependency on cffi for csrgen * Python 2 uses python-ldap, Python 3 pyldap https://pagure.io/freeipa/issue/6875 Signed-off-by: Christian Heimes <cheimes@redhat.com> Reviewed-By: Martin Basti <mbasti@redhat.com>
Diffstat (limited to 'ipapython')
-rwxr-xr-xipapython/setup.py6
1 files changed, 2 insertions, 4 deletions
diff --git a/ipapython/setup.py b/ipapython/setup.py
index f4bc3f868..4f7153039 100755
--- a/ipapython/setup.py
+++ b/ipapython/setup.py
@@ -41,16 +41,14 @@ if __name__ == '__main__':
"cryptography",
"dnspython",
"gssapi",
- "jwcrypto",
# "ipalib", # circular dependency
- "pyldap",
"netaddr",
"netifaces",
- "requests",
"six",
],
extras_require={
- ":python_version<'3'": ["enum34"],
+ ":python_version<'3'": ["enum34", "python-ldap"],
+ ":python_version>='3'": ["pyldap"],
"install": ["dbus-python"], # for certmonger
},
)