text-redcolor 0.1.0__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- text_redcolor-0.1.0/PKG-INFO +17 -0
- text_redcolor-0.1.0/README.md +8 -0
- text_redcolor-0.1.0/pyproject.toml +14 -0
- text_redcolor-0.1.0/setup.cfg +4 -0
- text_redcolor-0.1.0/text_redcolor/__init__.py +1 -0
- text_redcolor-0.1.0/text_redcolor/red.py +4 -0
- text_redcolor-0.1.0/text_redcolor.egg-info/PKG-INFO +17 -0
- text_redcolor-0.1.0/text_redcolor.egg-info/SOURCES.txt +8 -0
- text_redcolor-0.1.0/text_redcolor.egg-info/dependency_links.txt +1 -0
- text_redcolor-0.1.0/text_redcolor.egg-info/top_level.txt +1 -0
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: text_redcolor
|
|
3
|
+
Version: 0.1.0
|
|
4
|
+
Summary: Print text in red color like print()
|
|
5
|
+
Author: Your Name
|
|
6
|
+
License: MIT
|
|
7
|
+
Requires-Python: >=3.7
|
|
8
|
+
Description-Content-Type: text/markdown
|
|
9
|
+
|
|
10
|
+
# text_redcolor
|
|
11
|
+
|
|
12
|
+
By Sayko Xx
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
from text_redcolor import text
|
|
16
|
+
|
|
17
|
+
text("Hello World")
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = ["setuptools>=61.0"]
|
|
3
|
+
build-backend = "setuptools.build_meta"
|
|
4
|
+
|
|
5
|
+
[project]
|
|
6
|
+
name = "text_redcolor"
|
|
7
|
+
version = "0.1.0"
|
|
8
|
+
description = "Print text in red color like print()"
|
|
9
|
+
readme = "README.md"
|
|
10
|
+
requires-python = ">=3.7"
|
|
11
|
+
authors = [
|
|
12
|
+
{ name="Your Name" }
|
|
13
|
+
]
|
|
14
|
+
license = { text="MIT" }
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
from .red import text
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: text_redcolor
|
|
3
|
+
Version: 0.1.0
|
|
4
|
+
Summary: Print text in red color like print()
|
|
5
|
+
Author: Your Name
|
|
6
|
+
License: MIT
|
|
7
|
+
Requires-Python: >=3.7
|
|
8
|
+
Description-Content-Type: text/markdown
|
|
9
|
+
|
|
10
|
+
# text_redcolor
|
|
11
|
+
|
|
12
|
+
By Sayko Xx
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
from text_redcolor import text
|
|
16
|
+
|
|
17
|
+
text("Hello World")
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
text_redcolor
|