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 common python 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="ipalib",
|
|
|
|
doc=__doc__,
|
|
|
|
package_dir={'ipalib': ''},
|
|
|
|
packages=[
|
|
|
|
"ipalib",
|
2016-11-09 05:44:22 -06:00
|
|
|
"ipalib.install",
|
2016-10-24 07:56:58 -05:00
|
|
|
],
|
2016-10-27 07:04:58 -05:00
|
|
|
install_requires=[
|
2017-10-11 05:09:30 -05:00
|
|
|
"ipaplatform",
|
2016-10-27 07:04:58 -05:00
|
|
|
"ipapython",
|
|
|
|
"netaddr",
|
|
|
|
"pyasn1",
|
2016-11-17 09:43:17 -06:00
|
|
|
"pyasn1-modules",
|
2016-10-27 07:04:58 -05:00
|
|
|
"six",
|
|
|
|
],
|
2016-11-23 08:52:06 -06:00
|
|
|
extras_require={
|
2020-09-22 06:26:36 -05:00
|
|
|
"install": ["dbus-python"], # for certmonger and resolve1
|
2016-11-23 08:52:06 -06:00
|
|
|
},
|
2016-10-24 07:56:58 -05:00
|
|
|
)
|