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',