mirror of
https://salsa.debian.org/freeipa-team/freeipa.git
synced 2024-12-22 23:23:30 -06:00
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>
This commit is contained in:
parent
38cc40ddb5
commit
ed9645b2ac
@ -48,13 +48,12 @@ if __name__ == '__main__':
|
||||
"ipalib",
|
||||
"ipapython",
|
||||
"python-nss",
|
||||
"python-yubico",
|
||||
"pyusb",
|
||||
"qrcode",
|
||||
"six",
|
||||
],
|
||||
setup_requires=[
|
||||
"wheel",
|
||||
],
|
||||
extra_requires={
|
||||
extras_require={
|
||||
"ipaclient.install": ["ipaplatform"],
|
||||
"otptoken_yubikey": ["yubico", "usb"]
|
||||
}
|
||||
|
@ -40,6 +40,7 @@ if __name__ == '__main__':
|
||||
"ipapython",
|
||||
"netaddr",
|
||||
"pyasn1",
|
||||
"pyasn1-modules",
|
||||
"python-nss",
|
||||
"six",
|
||||
],
|
||||
|
@ -47,7 +47,4 @@ if __name__ == '__main__':
|
||||
"python-nss",
|
||||
"six",
|
||||
],
|
||||
setup_requires=[
|
||||
"wheel",
|
||||
],
|
||||
)
|
||||
|
@ -51,10 +51,8 @@ if __name__ == '__main__':
|
||||
"requests",
|
||||
"six",
|
||||
],
|
||||
setup_requires=[
|
||||
"wheel",
|
||||
],
|
||||
extras_require={
|
||||
":python_version<'3'": ["enum34"],
|
||||
"install": ["dbus-python"], # for certmonger
|
||||
},
|
||||
)
|
||||
|
@ -56,9 +56,9 @@ if __name__ == '__main__':
|
||||
"ipapython",
|
||||
"lxml",
|
||||
"netaddr",
|
||||
"memcache",
|
||||
"pyasn1",
|
||||
"pyldap",
|
||||
"python-memcached",
|
||||
"python-nss",
|
||||
"six",
|
||||
# not available on PyPI
|
||||
|
@ -62,10 +62,10 @@ PACKAGE_VERSION = {
|
||||
'ipaserver': 'ipaserver == @VERSION@',
|
||||
'kdcproxy': 'kdcproxy >= 0.3',
|
||||
'netifaces': 'netifaces >= 0.10.4',
|
||||
'python-nss': 'python-nss >= 0.16',
|
||||
'pyldap': 'pyldap >= 2.4.15',
|
||||
'python-nss': 'python-nss >= 0.16',
|
||||
'python-yubico': 'python-yubico >= 1.2.3',
|
||||
'qrcode': 'qrcode >= 5.0',
|
||||
# 'yubico': 'yubico >= 1.2.3',
|
||||
}
|
||||
|
||||
|
||||
|
@ -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"],
|
||||
}
|
||||
)
|
||||
|
Loading…
Reference in New Issue
Block a user