This commit is contained in:
sirex 2018-02-26 17:05:00 +00:00 committed by GitHub
commit 895c87f13d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 5 additions and 5 deletions

2
MANIFEST.in Normal file
View file

@ -0,0 +1,2 @@
include README.md
include LICENSE

View file

@ -3,8 +3,6 @@
import os import os
import sys import sys
import colout
try: try:
from setuptools import setup from setuptools import setup
except ImportError: except ImportError:
@ -20,18 +18,18 @@ requires = ['argparse', 'pygments', 'babel']
setup( setup(
name='colout', name='colout',
version='0.1', version='0.5',
description='Color Up Arbitrary Command Output.', description='Color Up Arbitrary Command Output.',
long_description=open('README.md').read(), long_description=open('README.md').read(),
author='nojhan', author='nojhan',
author_email='nojhan@nojhan.net', author_email='nojhan@nojhan.net',
url='http://nojhan.github.com/colout/', url='http://nojhan.github.com/colout/',
packages=packages, packages=packages,
package_data={'': ['LICENSE']}, package_data={'': ['LICENSE', 'README.md']},
package_dir={'colout': 'colout'}, package_dir={'colout': 'colout'},
scripts=['bin/colout'], scripts=['bin/colout'],
include_package_data=True, include_package_data=True,
install_requires=requires, install_requires=requires,
license=open('LICENSE').read(), license='GPLv3',
zip_safe=False, zip_safe=False,
) )