mirror of
https://salsa.debian.org/freeipa-team/freeipa.git
synced 2024-12-26 08:51:50 -06:00
acdd1f5978
I also renamed the base directory to pypi and added a new build target pypi_packages. Signed-off-by: Christian Heimes <cheimes@redhat.com> Reviewed-By: Martin Basti <mbasti@redhat.com>
24 lines
492 B
Python
Executable File
24 lines
492 B
Python
Executable File
#
|
|
# 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",
|
|
]
|
|
)
|