Add extra_requires for additional dependencies

ipaserver did not have extra_requires to state additional dependencies.

Signed-off-by: Christian Heimes <cheimes@redhat.com>
Reviewed-By: Martin Basti <mbasti@redhat.com>
Reviewed-By: Jan Cholasta <jcholast@redhat.com>
This commit is contained in:
Christian Heimes
2017-01-17 08:57:33 +01:00
committed by Martin Basti
parent 3064b890e2
commit 7c9df35d3d

View File

@@ -60,12 +60,6 @@ if __name__ == '__main__':
"pyasn1",
"pyldap",
"six",
# not available on PyPI
# "python-libipa_hbac",
# "python-sss",
# "python-sss-murmur",
# "python-SSSDConfig",
# "samba-python",
],
entry_points={
'custodia.authorizers': [
@@ -75,4 +69,12 @@ if __name__ == '__main__':
'IPASecStore = ipaserver.secrets.store:IPASecStore',
],
},
extras_require={
# These packages are currently not available on PyPI.
"caacl": ["pyhbac"],
"dcerpc": ["samba", "pysss", "pysss_nss_idmap"],
"hbactest": ["pyhbac"],
"install": ["SSSDConfig"],
"trust": ["pysss_murmur", "pysss_nss_idmap"],
}
)