2016-10-04 06:23:22 -05:00
|
|
|
# Copyright (C) 2007 Red Hat
|
2008-10-21 20:46:07 -05:00
|
|
|
# see file 'COPYING' for use and warranty information
|
|
|
|
#
|
2010-12-09 06:59:11 -06: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 20:46:07 -05: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 06:59:11 -06:00
|
|
|
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
2016-10-04 06:23:22 -05:00
|
|
|
#
|
2008-10-21 20:46:07 -05:00
|
|
|
|
2016-10-04 06:23:22 -05:00
|
|
|
"""FreeIPA client library
|
|
|
|
|
|
|
|
FreeIPA is a server for identity, policy, and audit.
|
2008-10-21 20:46:07 -05:00
|
|
|
"""
|
2016-10-24 07:56:58 -05:00
|
|
|
from os.path import abspath, dirname
|
2016-10-04 06:23:22 -05:00
|
|
|
import sys
|
2008-10-21 20:46:07 -05:00
|
|
|
|
2016-10-24 07:56:58 -05:00
|
|
|
if __name__ == '__main__':
|
|
|
|
# include ../ for ipasetup.py
|
|
|
|
sys.path.append(dirname(dirname(abspath(__file__))))
|
|
|
|
from ipasetup import ipasetup # noqa: E402
|
2010-03-29 07:25:57 -05:00
|
|
|
|
2016-10-24 07:56:58 -05:00
|
|
|
ipasetup(
|
|
|
|
name="ipaclient",
|
|
|
|
doc=__doc__,
|
|
|
|
package_dir={'ipaclient': ''},
|
|
|
|
packages=[
|
|
|
|
"ipaclient",
|
2016-10-19 03:52:37 -05:00
|
|
|
"ipaclient.install",
|
2016-10-24 07:56:58 -05:00
|
|
|
"ipaclient.plugins",
|
|
|
|
"ipaclient.remote_plugins",
|
|
|
|
"ipaclient.remote_plugins.2_49",
|
|
|
|
"ipaclient.remote_plugins.2_114",
|
|
|
|
"ipaclient.remote_plugins.2_156",
|
|
|
|
"ipaclient.remote_plugins.2_164",
|
|
|
|
],
|
2016-10-27 07:04:58 -05:00
|
|
|
install_requires=[
|
|
|
|
"cryptography",
|
|
|
|
"ipalib",
|
|
|
|
"ipapython",
|
|
|
|
"qrcode",
|
|
|
|
"six",
|
|
|
|
],
|
2017-04-07 08:03:08 -05:00
|
|
|
entry_points={
|
|
|
|
'console_scripts': [
|
|
|
|
'ipa = ipaclient.__main__:main'
|
|
|
|
]
|
|
|
|
},
|
2016-11-17 09:43:17 -06:00
|
|
|
extras_require={
|
2016-11-30 03:19:18 -06:00
|
|
|
"install": ["ipaplatform"],
|
2017-04-10 03:00:23 -05:00
|
|
|
"otptoken_yubikey": ["python-yubico", "pyusb"],
|
2019-04-08 01:05:52 -05:00
|
|
|
"ldap": ["python-ldap"], # ipapython.ipaldap
|
2017-03-02 09:09:53 -06:00
|
|
|
},
|
|
|
|
zip_safe=False,
|
2016-10-24 07:56:58 -05:00
|
|
|
)
|