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>
This commit is contained in:
Christian Heimes
2016-10-27 14:04:58 +02:00
committed by Martin Basti
parent 6ca96b3db0
commit 8346e1b067
10 changed files with 157 additions and 3 deletions

View File

@@ -43,4 +43,18 @@ if __name__ == '__main__':
"ipaclient.remote_plugins.2_156",
"ipaclient.remote_plugins.2_164",
],
install_requires=[
"cryptography",
"ipalib",
"ipapython",
"python-nss",
"qrcode",
"six",
],
setup_requires=[
"wheel",
],
extra_requires={
"otptoken_yubikey": ["yubico", "usb"]
}
)