#!/usr/bin/env python3
# -*- coding: utf-8 -*-
"""galley の入口。

    galley build / watch / checkbib / bib / csl / doctor / init / outline / targets

PATH に通しておくと楽:
    ln -s ~/galley/galley ~/.local/bin/galley
"""
import sys
from pathlib import Path

sys.path.insert(0, str(Path(__file__).resolve().parent))

from galleykit.cli import main  # noqa: E402

if __name__ == '__main__':
    sys.exit(main())
