diff --git a/README.rst b/README.rst index f0e7120..05cef59 100644 --- a/README.rst +++ b/README.rst @@ -1,6 +1,23 @@ Crayons: Text UI colors for Python. =================================== +.. image:: https://img.shields.io/pypi/v/crayons.svg + :target: https://pypi.python.org/pypi/crayons + +.. image:: https://img.shields.io/pypi/l/crayons.svg + :target: https://pypi.python.org/pypi/crayons + +.. image:: https://img.shields.io/pypi/wheel/crayons.svg + :target: https://pypi.python.org/pypi/crayons + +.. image:: https://img.shields.io/pypi/pyversions/crayons.svg + :target: https://pypi.python.org/pypi/crayons + +.. image:: https://img.shields.io/badge/SayThanks.io-☼-1EAEDB.svg + :target: https://saythanks.io/to/kennethreitz + + + This module is really simple, it gives you colored strings for terminal usage. Included colors are ``red``, ``green``, ``yellow``, ``blue``, ``black``, ``magenta``, ``cyan``, and ``white`` ( as well as ``clean`` and ``disable``). diff --git a/setup.py b/setup.py index 85c3469..331ab4d 100755 --- a/setup.py +++ b/setup.py @@ -30,7 +30,7 @@ required = [ setup( name='crayons', - version='0.1.1', + version='0.1.2', description='TextUI colors for Python.', long_description=long_description, author='Kenneth Reitz', @@ -39,7 +39,17 @@ setup( py_modules=['crayons'], install_requires=required, license='MIT', - classifiers=( + classifiers=[ + 'Programming Language :: Python', + 'Programming Language :: Python :: 2.6', + 'Programming Language :: Python :: 2.7', + 'Programming Language :: Python :: 3', + 'Programming Language :: Python :: 3.3', + 'Programming Language :: Python :: 3.4', + 'Programming Language :: Python :: 3.5', + 'Programming Language :: Python :: 3.6', + 'Programming Language :: Python :: Implementation :: CPython', + 'Programming Language :: Python :: Implementation :: PyPy' - ), + ], )