Files
freeipa/ipaserver/setup.py
T

85 lines
2.6 KiB
Python
Raw Normal View History

# Authors:
# Jason Gerard DeRose <jderose@redhat.com>
2008-10-21 19:46:07 -06:00
#
# Copyright (C) 2008 Red Hat
# see file 'COPYING' for use and warranty information
#
2010-12-09 13:59:11 +01:00
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
2008-10-21 19:46:07 -06:00
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
2010-12-09 13:59:11 +01:00
# along with this program. If not, see <http://www.gnu.org/licenses/>.
2008-10-21 19:46:07 -06:00
"""
2016-10-04 13:23:22 +02:00
Python-level packaging using setuptools
2008-10-21 19:46:07 -06:00
"""
from os.path import abspath, dirname
2016-10-04 13:23:22 +02:00
import sys
2008-10-21 19:46:07 -06:00
if __name__ == '__main__':
# include ../ for ipasetup.py
sys.path.append(dirname(dirname(abspath(__file__))))
from ipasetup import ipasetup # noqa: E402
2010-03-29 14:25:57 +02:00
ipasetup(
name='ipaserver',
doc=__doc__,
package_dir={'ipaserver': ''},
packages=[
'ipaserver',
'ipaserver.advise',
'ipaserver.advise.plugins',
'ipaserver.dnssec',
'ipaserver.plugins',
'ipaserver.secrets',
2019-01-30 14:08:38 +01:00
'ipaserver.secrets.handlers',
'ipaserver.install',
'ipaserver.install.plugins',
'ipaserver.install.server',
],
2016-10-27 14:04:58 +02:00
install_requires=[
"cryptography",
2017-02-28 12:07:19 +01:00
"custodia",
2016-10-27 14:04:58 +02:00
"dbus-python",
"dnspython",
# dogtag-pki is just the client package on PyPI. ipaserver
# requires the full pki package.
# "dogtag-pki",
2016-10-27 14:04:58 +02:00
"ipaclient",
"ipalib",
"ipaplatform",
"ipapython",
2017-04-10 10:00:23 +02:00
"jwcrypto",
2016-10-27 14:04:58 +02:00
"lxml",
"netaddr",
2020-09-23 08:46:44 +02:00
"psutil",
2016-10-27 14:04:58 +02:00
"pyasn1",
2017-04-10 10:00:23 +02:00
"requests",
2016-10-27 14:04:58 +02:00
"six",
2017-04-06 16:15:47 +02:00
"python-augeas",
2017-12-04 17:29:05 +01:00
"python-ldap",
2016-10-27 14:04:58 +02:00
],
entry_points={
'custodia.authorizers': [
'IPAKEMKeys = ipaserver.secrets.kem:IPAKEMKeys',
],
'custodia.stores': [
'IPASecStore = ipaserver.secrets.store:IPASecStore',
],
},
extras_require={
# These packages are currently not available on PyPI.
"dcerpc": ["samba", "pysss", "pysss_nss_idmap"],
"hbactest": ["pyhbac"],
"install": ["SSSDConfig"],
"trust": ["pysss_murmur", "pysss_nss_idmap"],
}
)