This should prevent the following error, ``` $ pip --version pip 18.1 from /Users/jq/.pyenv/versions/3.6.5/envs/jupyter/lib/python3.6/site-packages/pip (python 3.6) $ pip install colout Collecting colout Downloading https://files.pythonhosted.org/packages/3d/ba/3ef31c0df3ace69271cc8b1af6b529f24de66ff42c0d99a8d18aa980a307/colout-0.5.tar.gz (47kB) 100% |████████████████████████████████| 51kB 970kB/s Complete output from command python setup.py egg_info: Traceback (most recent call last): File "<string>", line 1, in <module> File "/private/var/folders/0x/y8s2qlk558596kyqdhv3nwv40000gn/T/pip-install-gixoekff/colout/setup.py", line 25, in <module> long_description=open('README.md').read(), FileNotFoundError: [Errno 2] No such file or directory: 'README.md' ---------------------------------------- Command "python setup.py egg_info" failed with error code 1 in /private/var/folders/0x/y8s2qlk558596kyqdhv3nwv40000gn/T/pip-install-gixoekff/colout/ ```
35 lines
861 B
Python
35 lines
861 B
Python
#!/usr/bin/env python3
|
|
|
|
import os
|
|
import sys
|
|
|
|
try:
|
|
from setuptools import setup
|
|
except ImportError:
|
|
from distutils.core import setup
|
|
|
|
if sys.argv[-1] == 'publish':
|
|
os.system('python3 setup.py sdist upload')
|
|
sys.exit()
|
|
|
|
packages = ['colout']
|
|
|
|
requires = ['argparse; python_version < "2.7"', 'pygments', 'babel']
|
|
|
|
setup(
|
|
name='colout',
|
|
version='0.6',
|
|
description='Color Up Arbitrary Command Output.',
|
|
long_description=open(os.path.join(os.path.dirname(__file__), 'README.md')).read(),
|
|
author='nojhan',
|
|
author_email='nojhan@nojhan.net',
|
|
url='http://nojhan.github.com/colout/',
|
|
packages=packages,
|
|
package_data={'': ['LICENSE', 'README.md']},
|
|
package_dir={'colout': 'colout'},
|
|
scripts=['bin/colout'],
|
|
include_package_data=True,
|
|
install_requires=requires,
|
|
license='GPLv3',
|
|
zip_safe=False,
|
|
)
|