#!/usr/bin/env python3

# lcitool - libvirt CI guest management tool
#
# Copyright (C) 2017-2020 Red Hat, Inc.
#
# SPDX-License-Identifier: GPL-2.0-or-later

import sys
from pathlib import Path


# This hack is to add lcitool/ to PYTHONPATH. It allows execution of
# lcitool without prior package installation using pip.
root = Path(__file__).parent.parent
sys.path.insert(0, root.as_posix())

from lcitool.__main__ import main

main()
