Files
freeipa/ipaclient/setup.py
T

70 lines
2.1 KiB
Python
Raw Normal View History

2016-10-04 13:23:22 +02:00
# Copyright (C) 2007 Red Hat
2008-10-21 19:46:07 -06:00
# 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/>.
2016-10-04 13:23:22 +02:00
#
2008-10-21 19:46:07 -06:00
2016-10-04 13:23:22 +02:00
"""FreeIPA client library
FreeIPA is a server for identity, policy, and audit.
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="ipaclient",
doc=__doc__,
package_dir={'ipaclient': ''},
packages=[
"ipaclient",
"ipaclient.install",
"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",
],
package_data={
'ipaclient': [
'csrgen/profiles/*.json',
'csrgen/rules/*.json',
'csrgen/templates/*.tmpl',
],
},
2016-10-27 14:04:58 +02:00
install_requires=[
"cryptography",
"ipalib",
"ipapython",
"qrcode",
"six",
],
2017-04-07 15:03:08 +02:00
entry_points={
'console_scripts': [
'ipa = ipaclient.__main__:main'
]
},
2016-11-17 16:43:17 +01:00
extras_require={
2016-11-30 10:19:18 +01:00
"install": ["ipaplatform"],
2017-04-10 10:00:23 +02:00
"otptoken_yubikey": ["python-yubico", "pyusb"],
2017-03-29 11:20:21 +02:00
"csrgen": ["cffi", "jinja2"],
},
zip_safe=False,
)