Files
freeipa/ipapython/setup.py
T

56 lines
1.6 KiB
Python
Raw Normal View History

#!/usr/bin/python3
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 python support 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="ipapython",
doc=__doc__,
package_dir={'ipapython': ''},
packages=[
"ipapython",
"ipapython.install"
],
2016-10-27 14:04:58 +02:00
install_requires=[
"cffi",
"cryptography",
"dnspython",
"gssapi",
# "ipalib", # circular dependency
"ipaplatform",
2016-10-27 14:04:58 +02:00
"netaddr",
"netifaces",
2017-12-04 17:29:05 +01:00
"python-ldap",
2016-10-27 14:04:58 +02:00
"six",
],
extras_require={
2017-12-04 17:29:05 +01:00
":python_version<'3'": ["enum34"],
2016-11-17 16:43:17 +01:00
"install": ["dbus-python"], # for certmonger
2016-10-27 14:04:58 +02:00
},
)