summaryrefslogtreecommitdiffstats
path: root/ipatests
diff options
context:
space:
mode:
authorChristian Heimes <cheimes@redhat.com>2016-11-17 16:43:17 +0100
committerMartin Babinsky <mbabinsk@redhat.com>2016-11-30 13:32:30 +0100
commited9645b2ac58fd4664810f05970ea258c7948420 (patch)
tree9b336c673e66be9f442e5d1336d3fc09e7df75dc /ipatests
parent38cc40ddb5bf965801500bb4f66fd965b12e3c88 (diff)
downloadfreeipa-ed9645b2ac58fd4664810f05970ea258c7948420.tar.gz
freeipa-ed9645b2ac58fd4664810f05970ea258c7948420.tar.xz
freeipa-ed9645b2ac58fd4664810f05970ea258c7948420.zip
Adjustments for setup requirements
* Fix some typos, missing or surplus dependencies. * Remove setup requirement on wheel since it triggers download. ipatests is now installable. Tests need further changes to be runable. https://fedorahosted.org/freeipa/ticket/6468 Signed-off-by: Christian Heimes <cheimes@redhat.com> Reviewed-By: Martin Babinsky <mbabinsk@redhat.com> Reviewed-By: Jan Cholasta <jcholast@redhat.com> Reviewed-By: Martin Basti <mbasti@redhat.com>
Diffstat (limited to 'ipatests')
-rw-r--r--ipatests/setup.py18
1 files changed, 9 insertions, 9 deletions
diff --git a/ipatests/setup.py b/ipatests/setup.py
index 26f01240b..2b592cd95 100644
--- a/ipatests/setup.py
+++ b/ipatests/setup.py
@@ -59,24 +59,24 @@ if __name__ == '__main__':
},
install_requires=[
"cryptography",
- "dbus-python",
"dnspython",
- "dogtag-pki",
+ "gssapi",
"ipaclient",
"ipalib",
"ipaplatform",
"ipapython",
- "ipaserver",
"nose",
+ "polib",
"pyldap",
"pytest",
- "python-gssapi",
+ "pytest_multihost",
"python-nss",
- "selenium",
"six",
- "yaml",
- ],
- setup_requires=[
- "wheel",
],
+ extras_require={
+ "integration": ["dbus-python", "pyyaml", "ipaserver"],
+ "ipaserver": ["ipaserver"],
+ "webui": ["selenium", "pyyaml", "ipaserver"],
+ "xmlrpc": ["ipaserver"],
+ }
)