mirror of
https://salsa.debian.org/freeipa-team/freeipa.git
synced 2024-12-25 08:21:05 -06:00
24 lines
492 B
Python
24 lines
492 B
Python
|
#
|
||
|
# Copyright (C) 2017 FreeIPA Contributors see COPYING for license
|
||
|
#
|
||
|
"""Dummy package for FreeIPA
|
||
|
|
||
|
Please install ipaclient instead.
|
||
|
"""
|
||
|
|
||
|
from os.path import abspath, dirname
|
||
|
import sys
|
||
|
|
||
|
if __name__ == '__main__':
|
||
|
# include ../../ for ipasetup.py
|
||
|
sys.path.append(dirname(dirname(dirname(abspath(__file__)))))
|
||
|
from ipasetup import ipasetup # noqa: E402
|
||
|
|
||
|
ipasetup(
|
||
|
name='ipa',
|
||
|
doc = __doc__,
|
||
|
install_requires=[
|
||
|
"ipaclient",
|
||
|
]
|
||
|
)
|