From 5c3b1a1e22b93316231015d30336e9ff69c851d2 Mon Sep 17 00:00:00 2001 From: Kenneth Reitz Date: Sat, 22 Jan 2011 19:03:54 -0500 Subject: [PATCH] brainstorm --- README.rst | 6 ++++++ setup.py | 8 ++++---- 2 files changed, 10 insertions(+), 4 deletions(-) diff --git a/README.rst b/README.rst index 8d9119b..a03d240 100644 --- a/README.rst +++ b/README.rst @@ -5,6 +5,12 @@ Clint: Python Command-line Application Helpers * Tree Structures * Columns / Colors + + powered by colorama + + colored.blue('Face') + colored.white('Book') + * choice: y/N? * query: Installation Path [/usr/local/bin/]: * &c diff --git a/setup.py b/setup.py index e4f8a47..cc23244 100644 --- a/setup.py +++ b/setup.py @@ -18,16 +18,16 @@ if sys.argv[-1] == "publish": required = [] setup( - name='wolfram', + name='clint', version='0.0.1', - description='Python wrapper for the Wolfram Alpha API, v2', + description='Python Command-line Application Helpers', long_description=open('README.rst').read() + '\n\n' + open('HISTORY.rst').read(), author='Kenneth Reitz', author_email='me@kennethreitz.com', - url='https://github.com/kennethreitz/wolfram', + url='https://github.com/kennethreitz/clint', packages= [ - 'wolfram', + 'clint', ], install_requires=required, license='MIT',