Skip to content

Commit

Permalink
version 1.4.3
Browse files Browse the repository at this point in the history
  • Loading branch information
croketillo committed Nov 25, 2023
1 parent 133f417 commit b754fb1
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 10 deletions.
4 changes: 3 additions & 1 deletion README.rst
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
ColorPattern
============

|PyPI| |Total Downloads|
.. image:: https://img.shields.io/pypi/dm/colorpattern:alt: PyPI - Downloads



ColorPattern is a Python module designed for enhancing text output in
the console by applying color to specific patterns. It offers a flexible
Expand Down
Binary file added dist/colorpattern-1.4.3-py3-none-any.whl
Binary file not shown.
Binary file added dist/colorpattern-1.4.3.tar.gz
Binary file not shown.
18 changes: 9 additions & 9 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ def read(file_name=None, is_encoding=True, ignore_raises=False):

setup(
name='colorpattern',
version='1.4.2',
version='1.4.3',
author='croketillo',
author_email='croketillo@gmail.com',
license=read("LICENSE", is_encoding=False, ignore_raises=True),
Expand All @@ -96,21 +96,21 @@ def read(file_name=None, is_encoding=True, ignore_raises=False):
long_description=read("README.rst"),
url='https://github.com/croketillo/colorpattern',
classifiers=[
'Environment :: Console', # Proyecto diseñado para ejecutarse en la consola
'Intended Audience :: Developers', # Audiencia a la que se dirige el proyecto
'Programming Language :: Python :: 3', # Indica que el proyecto es compatible con Python 3
'Environment :: Console',
'Intended Audience :: Developers',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Topic :: Terminals', # Relacionado con la manipulación de terminales y consolas
'Topic :: Software Development :: Libraries :: Python Modules', # Relacionado con desarrollo de software
'Topic :: Utilities', # Utilidades generales
'Topic :: Terminals',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: Utilities',
'Topic :: Terminals'
],
keywords='color pattern console',
keywords='color pattern console colorpattern',
entry_points={
'console_scripts': [
'colorpattern = colorpattern.colorpattern:main',
'colorpattern = colorpattern:main',
],
},
)

0 comments on commit b754fb1

Please sign in to comment.