https://github.com/fenderglass/Ragout
Revision 96d75db6483255d9abaf17a7e6e804c9f163afc5 authored by fenderglass on 20 June 2014, 20:32:52 UTC, committed by fenderglass on 20 June 2014, 20:32:52 UTC
1 parent 5a278a3
Raw File
Tip revision: 96d75db6483255d9abaf17a7e6e804c9f163afc5 authored by fenderglass on 20 June 2014, 20:32:52 UTC
small fix
Tip revision: 96d75db
ragout.py
#!/usr/bin/env python2.7
"""
This script does all the necessary preparations
and invokes Ragout
"""

import os
import sys

LIB_DIR = "lib"

#Check Python version
if sys.version_info[:2] != (2, 7):
    print("Error: Ragout requires Python version 2.7 ({0}.{1} detected)."
          .format(sys.version_info[0], sys.version_info[1]))
    sys.exit(-1)

#Setting executable paths
ragout_root = os.path.dirname(os.path.realpath(__file__))
lib_absolute = os.path.join(ragout_root, LIB_DIR)
sys.path.extend([ragout_root, lib_absolute])
os.environ["PATH"] += os.pathsep + lib_absolute

#Ragout entry point
from ragout.main import main
sys.exit(main())
back to top