TextColorDisplay 1.0.1__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.
- textcolordisplay-1.0.1/PKG-INFO +45 -0
- textcolordisplay-1.0.1/README.md +33 -0
- textcolordisplay-1.0.1/TextColorDisplay.egg-info/PKG-INFO +45 -0
- textcolordisplay-1.0.1/TextColorDisplay.egg-info/SOURCES.txt +7 -0
- textcolordisplay-1.0.1/TextColorDisplay.egg-info/dependency_links.txt +1 -0
- textcolordisplay-1.0.1/TextColorDisplay.egg-info/requires.txt +1 -0
- textcolordisplay-1.0.1/TextColorDisplay.egg-info/top_level.txt +1 -0
- textcolordisplay-1.0.1/pyproject.toml +27 -0
- textcolordisplay-1.0.1/setup.cfg +4 -0
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: TextColorDisplay
|
|
3
|
+
Version: 1.0.1
|
|
4
|
+
Summary: A terminal ASCII engine that supports inline multi-color and formatting tags.
|
|
5
|
+
Author: NeverStopTheCoder
|
|
6
|
+
Classifier: Programming Language :: Python :: 3
|
|
7
|
+
Classifier: License :: OSI Approved :: MIT License
|
|
8
|
+
Classifier: Operating System :: OS Independent
|
|
9
|
+
Requires-Python: >=3.7
|
|
10
|
+
Description-Content-Type: text/markdown
|
|
11
|
+
Requires-Dist: pyfiglet
|
|
12
|
+
|
|
13
|
+
# CD/Color Display
|
|
14
|
+
A terminal ASCII engine that supports inline multi-color and formatting tags.
|
|
15
|
+
## How to run:
|
|
16
|
+
```python
|
|
17
|
+
import CD
|
|
18
|
+
CD.DrawColoredText()
|
|
19
|
+
```
|
|
20
|
+
You will be asked what color and letters you want
|
|
21
|
+
if you type codes such as
|
|
22
|
+
```
|
|
23
|
+
HI :O: HELLO
|
|
24
|
+
```
|
|
25
|
+
then the Hello will be orange
|
|
26
|
+
```
|
|
27
|
+
:R: - Red
|
|
28
|
+
:O: - Orange
|
|
29
|
+
:Y: - Yellow
|
|
30
|
+
:G: - Green
|
|
31
|
+
:B: - Blue
|
|
32
|
+
:P: - Purple
|
|
33
|
+
:C: - Cyan
|
|
34
|
+
:B2: - Black
|
|
35
|
+
:W: - White
|
|
36
|
+
:UR: - UnderLined Red
|
|
37
|
+
:UO: - UnderLined Orange
|
|
38
|
+
:UY: - UnderLined Yellow
|
|
39
|
+
:UG: - UnderLined Green
|
|
40
|
+
:UB: - UnderLined Blue
|
|
41
|
+
:UP: - UnderLined Purple
|
|
42
|
+
:UC: - UnderLined Cyan
|
|
43
|
+
:UB2: - UnderLined Black
|
|
44
|
+
:UW: - UnderLined White
|
|
45
|
+
```
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
# CD/Color Display
|
|
2
|
+
A terminal ASCII engine that supports inline multi-color and formatting tags.
|
|
3
|
+
## How to run:
|
|
4
|
+
```python
|
|
5
|
+
import CD
|
|
6
|
+
CD.DrawColoredText()
|
|
7
|
+
```
|
|
8
|
+
You will be asked what color and letters you want
|
|
9
|
+
if you type codes such as
|
|
10
|
+
```
|
|
11
|
+
HI :O: HELLO
|
|
12
|
+
```
|
|
13
|
+
then the Hello will be orange
|
|
14
|
+
```
|
|
15
|
+
:R: - Red
|
|
16
|
+
:O: - Orange
|
|
17
|
+
:Y: - Yellow
|
|
18
|
+
:G: - Green
|
|
19
|
+
:B: - Blue
|
|
20
|
+
:P: - Purple
|
|
21
|
+
:C: - Cyan
|
|
22
|
+
:B2: - Black
|
|
23
|
+
:W: - White
|
|
24
|
+
:UR: - UnderLined Red
|
|
25
|
+
:UO: - UnderLined Orange
|
|
26
|
+
:UY: - UnderLined Yellow
|
|
27
|
+
:UG: - UnderLined Green
|
|
28
|
+
:UB: - UnderLined Blue
|
|
29
|
+
:UP: - UnderLined Purple
|
|
30
|
+
:UC: - UnderLined Cyan
|
|
31
|
+
:UB2: - UnderLined Black
|
|
32
|
+
:UW: - UnderLined White
|
|
33
|
+
```
|
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: TextColorDisplay
|
|
3
|
+
Version: 1.0.1
|
|
4
|
+
Summary: A terminal ASCII engine that supports inline multi-color and formatting tags.
|
|
5
|
+
Author: NeverStopTheCoder
|
|
6
|
+
Classifier: Programming Language :: Python :: 3
|
|
7
|
+
Classifier: License :: OSI Approved :: MIT License
|
|
8
|
+
Classifier: Operating System :: OS Independent
|
|
9
|
+
Requires-Python: >=3.7
|
|
10
|
+
Description-Content-Type: text/markdown
|
|
11
|
+
Requires-Dist: pyfiglet
|
|
12
|
+
|
|
13
|
+
# CD/Color Display
|
|
14
|
+
A terminal ASCII engine that supports inline multi-color and formatting tags.
|
|
15
|
+
## How to run:
|
|
16
|
+
```python
|
|
17
|
+
import CD
|
|
18
|
+
CD.DrawColoredText()
|
|
19
|
+
```
|
|
20
|
+
You will be asked what color and letters you want
|
|
21
|
+
if you type codes such as
|
|
22
|
+
```
|
|
23
|
+
HI :O: HELLO
|
|
24
|
+
```
|
|
25
|
+
then the Hello will be orange
|
|
26
|
+
```
|
|
27
|
+
:R: - Red
|
|
28
|
+
:O: - Orange
|
|
29
|
+
:Y: - Yellow
|
|
30
|
+
:G: - Green
|
|
31
|
+
:B: - Blue
|
|
32
|
+
:P: - Purple
|
|
33
|
+
:C: - Cyan
|
|
34
|
+
:B2: - Black
|
|
35
|
+
:W: - White
|
|
36
|
+
:UR: - UnderLined Red
|
|
37
|
+
:UO: - UnderLined Orange
|
|
38
|
+
:UY: - UnderLined Yellow
|
|
39
|
+
:UG: - UnderLined Green
|
|
40
|
+
:UB: - UnderLined Blue
|
|
41
|
+
:UP: - UnderLined Purple
|
|
42
|
+
:UC: - UnderLined Cyan
|
|
43
|
+
:UB2: - UnderLined Black
|
|
44
|
+
:UW: - UnderLined White
|
|
45
|
+
```
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
pyfiglet
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
CD
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = ["setuptools>=61.0"]
|
|
3
|
+
build-backend = "setuptools.build_meta"
|
|
4
|
+
|
|
5
|
+
[project]
|
|
6
|
+
name = "TextColorDisplay"
|
|
7
|
+
version = "1.0.1"
|
|
8
|
+
authors = [
|
|
9
|
+
{ name="NeverStopTheCoder" },
|
|
10
|
+
]
|
|
11
|
+
description = "A terminal ASCII engine that supports inline multi-color and formatting tags."
|
|
12
|
+
readme = "README.md"
|
|
13
|
+
requires-python = ">=3.7"
|
|
14
|
+
|
|
15
|
+
# This automatically handles the pyfiglet installation background work:
|
|
16
|
+
dependencies = [
|
|
17
|
+
"pyfiglet",
|
|
18
|
+
]
|
|
19
|
+
|
|
20
|
+
classifiers = [
|
|
21
|
+
"Programming Language :: Python :: 3",
|
|
22
|
+
"License :: OSI Approved :: MIT License",
|
|
23
|
+
"Operating System :: OS Independent",
|
|
24
|
+
]
|
|
25
|
+
|
|
26
|
+
[tool.setuptools]
|
|
27
|
+
py-modules = ["CD"]
|