Fixes #88: failed to install with pip
Also this fix includes package version issue, fixed in #87. In order to generate python package with all the files in it, use this command: python setup.py sdist
This commit is contained in:
parent
ac7a2c3859
commit
b7e71fc32f
2 changed files with 4 additions and 4 deletions
2
MANIFEST.in
Normal file
2
MANIFEST.in
Normal file
|
|
@ -0,0 +1,2 @@
|
||||||
|
include README.md
|
||||||
|
include LICENSE
|
||||||
6
setup.py
6
setup.py
|
|
@ -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,14 +18,14 @@ 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,
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue