#!/usr/bin/env python3


"""
BioCLI for Computational Biology
"""

import os
import sys

__version__ = "1.0"


cwd = os.path.dirname(os.path.realpath(__file__))
print(cwd)
# The list of the paths for searching packages and modules by DynaCLI
# This is a simplest possible configuration. Look at [TBD]() for complete list
# of configuration options and typical use cases for each one.
search_path = [cwd]
# This needs to be done only if your sys.path does not already include it.

try:
    from dynacli import main
except ImportError:
    print("DynaCLI is not installed. Please install it first. (pip3 install dynacli)")
    sys.exit(1)

sys.path.extend(search_path)

main(search_path)
