add setup.py

This commit is contained in:
Piotr Staroszczyk 2013-04-09 19:12:26 +02:00
commit 8df684f3a0
7 changed files with 36 additions and 0 deletions

0
colout/__init__.py Normal file
View file

36
setup.py Normal file
View file

@ -0,0 +1,36 @@
#!/usr/bin/env python
import os
import sys
import colout
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
if sys.argv[-1] == 'publish':
os.system('python setup.py sdist upload')
sys.exit()
packages = ['colout']
requires = []
setup(
name='colout',
version='0.1',
description='Color Up Arbitrary Command Ouput.',
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_dir={'colout': 'colout'},
include_package_data=True,
install_requires=requires,
license=open('LICENSE').read(),
zip_safe=False,
)