diff --git a/bin/colout b/bin/colout new file mode 100644 index 0000000..9e09ae9 --- /dev/null +++ b/bin/colout @@ -0,0 +1,11 @@ +#!/bin/bash +# Copyright © 2013 Martin Ueding + +# Small launcher script for the main module. + +# Licence: GPL 3 + +set -e +set -u + +python3 -m colout.colout "$@" diff --git a/setup.py b/setup.py index 3145294..463b4d4 100644 --- a/setup.py +++ b/setup.py @@ -29,6 +29,7 @@ setup( packages=packages, package_data={'': ['LICENSE']}, package_dir={'colout': 'colout'}, + scripts=['bin/colout'], include_package_data=True, install_requires=requires, license=open('LICENSE').read(),