diff --git a/bin/colout b/bin/colout index 9e09ae9..aedc3eb 100644 --- a/bin/colout +++ b/bin/colout @@ -1,5 +1,5 @@ #!/bin/bash -# Copyright © 2013 Martin Ueding +# Copyright @ 2013 Martin Ueding # Small launcher script for the main module. @@ -8,4 +8,4 @@ set -e set -u -python3 -m colout.colout "$@" +python -m colout.colout "$@" diff --git a/setup.py b/setup.py index 8b25d51..1e208a8 100644 --- a/setup.py +++ b/setup.py @@ -1,10 +1,9 @@ -#!/usr/bin/env python3 +#!/usr/bin/env python +#coding=utf-8 import os import sys -#import colout - try: from setuptools import setup except ImportError: @@ -39,17 +38,17 @@ setup( version='0.1', description='Color Up Arbitrary Command Ouput.', long_description=open('README').read(), - author='nojhan', + author='Nojhan', author_email='nojhan@nojhan.net', url='http://nojhan.github.com/colout/', - download_url = 'https://pypi.python.org/packages/source/C/colout/colout-0.1.tar.gz', + download_url = 'https://pypi.python.org/packages/source/c/colout/colout-0.1.tar.gz', packages=packages, package_data={'': ['LICENSE']}, package_dir={'colout': 'colout'}, scripts=['bin/colout'], include_package_data=True, install_requires=requires, - license=open('LICENSE').read(), + license="GPL 3", classifiers = filter(None, classifiers.split("\n")), zip_safe=False, )