diff --git a/README.md b/README.md index 58cc8a3..09e3bfb 100644 --- a/README.md +++ b/README.md @@ -43,7 +43,7 @@ def main(): start_color([pattern1, pattern2, pattern3, email, strike, italic,blink]) # Use the custom print function with colorization - print('Colorpattern v1.4.2') + print('Colorpattern v1.4.5') print('By Croketillo - croketillo@gmail.com') print('NEW!!! - NOW YOU CAN INCLUDE STRIKETHROUGH IN PATTERNS') print('This is a BLINK and ITALIC TEXT test') @@ -51,10 +51,10 @@ def main(): # End colorization and restore the original print function end_color() print("\nNORMAL PRINT") - # Now, printing returns to normal + # Now, printing returns to normal print('-----------------------') - print('Colorpattern v1.4.2') + print('Colorpattern v1.4.5') print('By Croketillo - croketillo@gmail.com') print('NEW!!! - NOW YOU CAN INCLUDE STRIKETHROUGH IN PATTERNS') print('This is a BLINK and ITALIC TEXT test') @@ -65,7 +65,6 @@ def main(): # Use the custom print function with new patterns print("\nSTART COLORIZED PRINT AGAIN") start_color([pattern1, new_pattern]) - print('-----------------------') print('This is a new pattern. 123456') diff --git a/README.rst b/README.rst index a7f9fff..0760c3d 100644 --- a/README.rst +++ b/README.rst @@ -1,7 +1,9 @@ ColorPattern ============ -.. image:: https://img.shields.io/pypi/dm/colorpattern:alt: PyPI - Downloads +.. image:: https://img.shields.io/pypi/dm/colorpattern + :alt: PyPI - Downloads + @@ -54,7 +56,7 @@ Example start_color([pattern1, pattern2, pattern3, email, strike, italic,blink]) # Use the custom print function with colorization - print('Colorpattern v1.4.2') + print('Colorpattern v1.4.5') print('By Croketillo - croketillo@gmail.com') print('NEW!!! - NOW YOU CAN INCLUDE STRIKETHROUGH IN PATTERNS') print('This is a BLINK and ITALIC TEXT test') @@ -62,10 +64,10 @@ Example # End colorization and restore the original print function end_color() print("\nNORMAL PRINT") - # Now, printing returns to normal + # Now, printing returns to normal print('-----------------------') - print('Colorpattern v1.4.2') + print('Colorpattern v1.4.5') print('By Croketillo - croketillo@gmail.com') print('NEW!!! - NOW YOU CAN INCLUDE STRIKETHROUGH IN PATTERNS') print('This is a BLINK and ITALIC TEXT test') @@ -76,7 +78,6 @@ Example # Use the custom print function with new patterns print("\nSTART COLORIZED PRINT AGAIN") start_color([pattern1, new_pattern]) - print('-----------------------') print('This is a new pattern. 123456') diff --git a/colorpattern/colorpattern.py b/colorpattern/colorpattern.py index cfc865e..9d9b201 100644 --- a/colorpattern/colorpattern.py +++ b/colorpattern/colorpattern.py @@ -1,5 +1,5 @@ """ -This file is (or part of) COLORPATTERN v1.4.1 +This file is (or part of) COLORPATTERN v1.4.5 Copyright 2023- Croketillo https://github.com/croketillo DESCIPTION: diff --git a/dist/colorpattern-1.4.4-py3-none-any.whl b/dist/colorpattern-1.4.4-py3-none-any.whl new file mode 100644 index 0000000..25de6e0 Binary files /dev/null and b/dist/colorpattern-1.4.4-py3-none-any.whl differ diff --git a/dist/colorpattern-1.4.4.tar.gz b/dist/colorpattern-1.4.4.tar.gz new file mode 100644 index 0000000..7727ceb Binary files /dev/null and b/dist/colorpattern-1.4.4.tar.gz differ diff --git a/dist/colorpattern-1.4.5-py3-none-any.whl b/dist/colorpattern-1.4.5-py3-none-any.whl new file mode 100644 index 0000000..d738b01 Binary files /dev/null and b/dist/colorpattern-1.4.5-py3-none-any.whl differ diff --git a/dist/colorpattern-1.4.5.tar.gz b/dist/colorpattern-1.4.5.tar.gz new file mode 100644 index 0000000..2af718b Binary files /dev/null and b/dist/colorpattern-1.4.5.tar.gz differ diff --git a/setup.py b/setup.py index d46b79e..5bba595 100644 --- a/setup.py +++ b/setup.py @@ -84,7 +84,7 @@ def read(file_name=None, is_encoding=True, ignore_raises=False): setup( name='colorpattern', - version='1.4.3', + version='1.4.5', author='croketillo', author_email='croketillo@gmail.com', license=read("LICENSE", is_encoding=False, ignore_raises=True), @@ -108,9 +108,4 @@ def read(file_name=None, is_encoding=True, ignore_raises=False): 'Topic :: Terminals' ], keywords='color pattern console colorpattern', - entry_points={ - 'console_scripts': [ - 'colorpattern = colorpattern:main', - ], - }, ) diff --git a/test/colorpattern_test.py b/test/colorpattern_test.py index d195ddb..1ba2ba5 100644 --- a/test/colorpattern_test.py +++ b/test/colorpattern_test.py @@ -16,7 +16,7 @@ def main(): start_color([pattern1, pattern2, pattern3, email, strike, italic,blink]) # Use the custom print function with colorization - print('Colorpattern v1.4.1') + print('Colorpattern v1.4.5') print('By Croketillo - croketillo@gmail.com') print('NEW!!! - NOW YOU CAN INCLUDE STRIKETHROUGH IN PATTERNS') print('This is a BLINK and ITALIC TEXT test') @@ -27,7 +27,7 @@ def main(): # Now, printing returns to normal print('-----------------------') - print('Colorpattern v1.4.1') + print('Colorpattern v1.4.5') print('By Croketillo - croketillo@gmail.com') print('NEW!!! - NOW YOU CAN INCLUDE STRIKETHROUGH IN PATTERNS') print('This is a BLINK and ITALIC TEXT test')