mirror of
https://salsa.debian.org/freeipa-team/freeipa.git
synced 2025-02-25 18:55:28 -06:00
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:
committed by
Martin Basti
parent
3064b890e2
commit
7c9df35d3d
@@ -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"],
|
||||
}
|
||||
)
|
||||
|
||||
Reference in New Issue
Block a user