Merge branch 'fix-88-bug' of https://github.com/sirex/colout into sirex-fix-88-bug
This commit is contained in:
commit
0281609095
2 changed files with 5 additions and 5 deletions
2
MANIFEST.in
Normal file
2
MANIFEST.in
Normal file
|
|
@ -0,0 +1,2 @@
|
|||
include README.md
|
||||
include LICENSE
|
||||
8
setup.py
8
setup.py
|
|
@ -3,8 +3,6 @@
|
|||
import os
|
||||
import sys
|
||||
|
||||
import colout
|
||||
|
||||
try:
|
||||
from setuptools import setup
|
||||
except ImportError:
|
||||
|
|
@ -20,18 +18,18 @@ requires = ['argparse', 'pygments', 'babel']
|
|||
|
||||
setup(
|
||||
name='colout',
|
||||
version='0.1',
|
||||
version='0.5',
|
||||
description='Color Up Arbitrary Command Output.',
|
||||
long_description=open('README.md').read(),
|
||||
author='nojhan',
|
||||
author_email='nojhan@nojhan.net',
|
||||
url='http://nojhan.github.com/colout/',
|
||||
packages=packages,
|
||||
package_data={'': ['LICENSE']},
|
||||
package_data={'': ['LICENSE', 'README.md']},
|
||||
package_dir={'colout': 'colout'},
|
||||
scripts=['bin/colout'],
|
||||
include_package_data=True,
|
||||
install_requires=requires,
|
||||
license=open('LICENSE').read(),
|
||||
license='GPLv3',
|
||||
zip_safe=False,
|
||||
)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue