Use version from SCM

This commit is contained in:
Oliver Bristow 2018-08-04 17:30:49 +01:00 committed by Oliver Bristow
commit a261a2dfa8
No known key found for this signature in database
GPG key ID: FF13F04BD2C87186
2 changed files with 5 additions and 1 deletions

1
.gitignore vendored
View file

@ -2,3 +2,4 @@
build/
dist/
colout.egg-info/
.eggs/

View file

@ -16,9 +16,11 @@ packages = ['colout']
requires = ['argparse; python_version < "2.7"', 'pygments', 'babel']
setup_requires = ['setuptools_scm']
setup(
name='colout',
version='0.6',
use_scm_version=True,
description='Color Up Arbitrary Command Output.',
long_description=open('README.md').read(),
author='nojhan',
@ -28,6 +30,7 @@ setup(
package_data={'': ['LICENSE', 'README.md']},
package_dir={'colout': 'colout'},
scripts=['bin/colout'],
setup_requires=setup_requires,
include_package_data=True,
install_requires=requires,
license='GPLv3',