This commit is contained in:
2017-01-23 21:41:11 -05:00
parent 50d72d0427
commit a0aa467f55
2 changed files with 30 additions and 3 deletions
+17
View File
@@ -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``).
+13 -3
View File
@@ -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'
),
],
)