TextBeautify 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.
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: TextBeautify
|
|
3
|
+
Version: 0.1.0
|
|
4
|
+
Summary: A TextBeautify Library That Beautifys Your Text!
|
|
5
|
+
Author-email: Cosmic Union <cosmicunion2@gmail.com>
|
|
6
|
+
Requires-Python: >=3.6
|
|
7
|
+
Description-Content-Type: text/markdown
|
|
8
|
+
Classifier: License :: OSI Approved :: MIT License
|
|
9
|
+
Classifier: Programming Language :: Python :: 3
|
|
10
|
+
|
|
11
|
+
A TextBeautify Library That Beautifys Your Text!
|
|
12
|
+
# Installation
|
|
13
|
+
```bash
|
|
14
|
+
pip install TextBeautify
|
|
15
|
+
```
|
|
16
|
+
# Usage
|
|
17
|
+
```python
|
|
18
|
+
import TextBeautify
|
|
19
|
+
|
|
20
|
+
print(TextBeautify.beautify("Any Text Here"))
|
|
21
|
+
```
|
|
22
|
+
# Output
|
|
23
|
+
```bash
|
|
24
|
+
*★ Any Text Here ★*
|
|
25
|
+
```
|
|
26
|
+
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
A TextBeautify Library That Beautifys Your Text!
|
|
2
|
+
# Installation
|
|
3
|
+
```bash
|
|
4
|
+
pip install TextBeautify
|
|
5
|
+
```
|
|
6
|
+
# Usage
|
|
7
|
+
```python
|
|
8
|
+
import TextBeautify
|
|
9
|
+
|
|
10
|
+
print(TextBeautify.beautify("Any Text Here"))
|
|
11
|
+
```
|
|
12
|
+
# Output
|
|
13
|
+
```bash
|
|
14
|
+
*★ Any Text Here ★*
|
|
15
|
+
```
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = ["flit_core>=3.2"]
|
|
3
|
+
build-backend = "flit_core.buildapi"
|
|
4
|
+
|
|
5
|
+
[project]
|
|
6
|
+
name = "TextBeautify"
|
|
7
|
+
version = "0.1.0"
|
|
8
|
+
description = "A TextBeautify Library That Beautifys Your Text!"
|
|
9
|
+
readme = "README.md"
|
|
10
|
+
requires-python = ">=3.6"
|
|
11
|
+
authors = [
|
|
12
|
+
{ name = "Cosmic Union", email = "cosmicunion2@gmail.com" }
|
|
13
|
+
]
|
|
14
|
+
license = { text = "MIT" }
|
|
15
|
+
classifiers = [
|
|
16
|
+
"License :: OSI Approved :: MIT License",
|
|
17
|
+
"Programming Language :: Python :: 3"
|
|
18
|
+
]
|