summaryrefslogtreecommitdiffstats
path: root/ipatests
diff options
context:
space:
mode:
authorChristian Heimes <cheimes@redhat.com>2016-10-27 14:04:58 +0200
committerMartin Basti <mbasti@redhat.com>2016-11-16 22:58:39 +0100
commit8346e1b067483d4d836627a267805bbe8d6e7efa (patch)
treee4206cfe30c39cfcc7aebfa8937ea1620c623822 /ipatests
parent6ca96b3db03d4f3c5dbf465ca3d36bd563771c47 (diff)
downloadfreeipa-8346e1b067483d4d836627a267805bbe8d6e7efa.tar.gz
freeipa-8346e1b067483d4d836627a267805bbe8d6e7efa.tar.xz
freeipa-8346e1b067483d4d836627a267805bbe8d6e7efa.zip
Add install requirements to Python packages
https://fedorahosted.org/freeipa/ticket/6468 Signed-off-by: Christian Heimes <cheimes@redhat.com> Reviewed-By: Martin Basti <mbasti@redhat.com>
Diffstat (limited to 'ipatests')
-rw-r--r--ipatests/setup.py25
1 files changed, 24 insertions, 1 deletions
diff --git a/ipatests/setup.py b/ipatests/setup.py
index 32a520796..ba7a40fa1 100644
--- a/ipatests/setup.py
+++ b/ipatests/setup.py
@@ -56,5 +56,28 @@ if __name__ == '__main__':
'ipatests.test_pkcs10': ['*.csr'],
"ipatests.test_ipaserver": ['data/*'],
'ipatests.test_xmlrpc': ['data/*'],
- }
+ },
+ install_requires=[
+ "cryptography",
+ "dbus-python",
+ "dnspython",
+ "dogtag-pki",
+ "ipaclient",
+ "ipalib",
+ "ipaplatform",
+ "ipapython",
+ "ipaserver",
+ "lxml",
+ "nose",
+ "pyldap",
+ "pytest",
+ "python-gssapi",
+ "python-nss",
+ "selenium",
+ "six",
+ "yaml",
+ ],
+ setup_requires=[
+ "wheel",
+ ],
)