#!/usr/bin/env python3.6
import sys
from pathlib import Path

# TODO: This should not be done, but I'm unsure what makes astrality
# un-importable in this setting.
PROJECT_DIR = Path(__file__).absolute().parents[1]
sys.path.append(str(PROJECT_DIR))

from astrality.astrality import main

main()

# vim:filetype=python
