mirror of
https://github.com/kennethreitz/crayons.git
synced 2026-06-05 23:10:18 +00:00
v0.1.2
This commit is contained in:
+17
@@ -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``).
|
||||
|
||||
|
||||
@@ -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'
|
||||
|
||||
),
|
||||
],
|
||||
)
|
||||
|
||||
Reference in New Issue
Block a user