Merge pull request #25 from martin-ueding/launcher

Add launcher script
This commit is contained in:
Johann Dreo 2013-05-04 15:16:29 -07:00
commit d91c333d63
2 changed files with 12 additions and 0 deletions

11
bin/colout Normal file
View file

@ -0,0 +1,11 @@
#!/bin/bash
# Copyright © 2013 Martin Ueding <dev@martin-ueding.de>
# Small launcher script for the main module.
# Licence: GPL 3
set -e
set -u
python3 -m colout.colout "$@"

View file

@ -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(),