#!/usr/bin/env python3
from pathlib import Path

from shiv_utils import build


def shiv_build():
    pkg_dpath = Path(__file__).parent.parent
    build(
        pkg_dpath,
        pkg_dpath / 'requirements' / 'common.txt',
        'juke',
        'juke:cli:cli',
        preamble_fpath=pkg_dpath / 'shiv' / 'preamble.py',
    )


if __name__ == '__main__':
    shiv_build()
