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>
27 lines
566 B
Python
Executable File
27 lines
566 B
Python
Executable File
#
|
|
# Copyright (C) 2017 FreeIPA Contributors see COPYING for license
|
|
#
|
|
"""Dummy package for FreeIPA
|
|
|
|
ipatests is not yet available as PyPI package.
|
|
"""
|
|
|
|
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='ipaserver',
|
|
doc = __doc__,
|
|
packages=[
|
|
"ipaserver",
|
|
],
|
|
install_requires=[
|
|
"ipaclient",
|
|
]
|
|
)
|