Replace shell script with console scripts

This commit is contained in:
Oliver Bristow 2018-08-04 20:18:21 +01:00 committed by Oliver Bristow
commit f9ec8cba39
No known key found for this signature in database
GPG key ID: FF13F04BD2C87186
3 changed files with 8 additions and 14 deletions

View file

@ -36,6 +36,9 @@ setup(
use_scm_version=True,
classifiers=classifiers,
description='Color Up Arbitrary Command Output.',
entry_points={
'console_scripts': ['colout=colout.colout:main'],
},
long_description=open('README.md').read(),
author='nojhan',
author_email='nojhan@nojhan.net',
@ -43,7 +46,6 @@ setup(
packages=packages,
package_data={'': ['LICENSE', 'README.md']},
package_dir={'colout': 'colout'},
scripts=['bin/colout'],
setup_requires=setup_requires,
include_package_data=True,
install_requires=requires,