summaryrefslogtreecommitdiffstats
path: root/pypi/ipatests/setup.py
blob: 808e510caa43f6fd6d6753be6e226f5fb2cbd56f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
#
# 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='ipatests',
        doc = __doc__,
        packages=[
            "ipatests",
        ],
        install_requires=[
            "ipaclient",
        ]
    )