#!/usr/bin/env python3
# -*- coding: utf-8 -*-

"""This is just a wrapper to yokadi package that rely in standard python site-package
 This wrapper is intended to be placed in user PATH and to be executable

@author: Sébastien Renard (sebastien.renard@digitalfox.org)
@license:GPL v3 or later
 """

import os

fromsrc_py = os.path.join(os.path.dirname(__file__), "fromsrc.py")
if os.path.exists(fromsrc_py):
    import fromsrc

from yokadi.ycli import main
main.main()
