Skip to content

Commit

Permalink
update-markdown
Browse files Browse the repository at this point in the history
  • Loading branch information
CrispenGari committed Feb 10, 2024
1 parent daf9a84 commit 4ab5221
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 5 deletions.
6 changes: 4 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

`inksplash` is a Python package that provides a versatile set of utilities for colorizing and styling text output in terminal environments.

<p align="center"><img src="/logo.png" width="200" alt="logo"/></p>
<p align="center"><img src="https://github.com/CrispenGari/inksplash/blob/main/logo.png?raw=true" width="200" alt="logo"/></p>

### Table of Contents

Expand Down Expand Up @@ -37,7 +37,9 @@ from inksplash import chameleon
print(chameleon.bg_bright_green(chameleon.italic(chameleon.black("Hello world"))))
```

<p align="center"><img src="/images/demo.jpg" alt="demo" with="300"/></p>
Output:

<p align="center"><img src="https://github.com/CrispenGari/inksplash/blob/main/images/demo.jpg?raw=true" alt="demo" with="300"/></p>

This example demonstrates how to use `chameleon` functions from `inksplash` to colorize and style text output. In this case, it applies a bright green background, italic style, and black text color to the string "Hello world".

Expand Down
8 changes: 5 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"

[project]
name = "inksplash"
version = "0.0.1"
version = "1.0.0"
authors = [
{name = "Crispen Gari", email = "crispengari@gmail.com"},
]
Expand All @@ -14,19 +14,21 @@ license = {file = "LICENSE"}
requires-python = ">=3.9"
keywords = ["inksplash", "colors", "chameleon", "console", "styling", "text-formatting", "CLI", "ANSI", "print", "text-decoration" ]
classifiers = [
"Development Status :: 3 - Alpha",
'Development Status :: 6 - Mature',
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.9",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Terminals",
"Topic :: Utilities",
'Programming Language :: Python',
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.10",
"Operating System :: Unix",
"Operating System :: MacOS :: MacOS X",
"Operating System :: Microsoft :: Windows"
"Operating System :: Microsoft :: Windows",
'Natural Language :: English'
]

[tool.poetry.metadata]
Expand Down

0 comments on commit 4ab5221

Please sign in to comment.