PrettyTableX 0.1.0__tar.gz → 0.1.2__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.
- prettytablex-0.1.2/PKG-INFO +16 -0
- prettytablex-0.1.2/PrettyTableX.egg-info/PKG-INFO +16 -0
- {prettytablex-0.1.0 → prettytablex-0.1.2}/PrettyTableX.egg-info/SOURCES.txt +2 -2
- prettytablex-0.1.2/README.md +8 -0
- {prettytablex-0.1.0 → prettytablex-0.1.2}/pyproject.toml +2 -2
- prettytablex-0.1.0/PKG-INFO +0 -6
- prettytablex-0.1.0/PrettyTable/__init__.py +0 -1
- prettytablex-0.1.0/PrettyTableX.egg-info/PKG-INFO +0 -6
- /prettytablex-0.1.0/PrettyTable/core.py → /prettytablex-0.1.2/PrettyTable.py +0 -0
- {prettytablex-0.1.0 → prettytablex-0.1.2}/PrettyTableX.egg-info/dependency_links.txt +0 -0
- {prettytablex-0.1.0 → prettytablex-0.1.2}/PrettyTableX.egg-info/top_level.txt +0 -0
- {prettytablex-0.1.0 → prettytablex-0.1.2}/setup.cfg +0 -0
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: PrettyTableX
|
|
3
|
+
Version: 0.1.2
|
|
4
|
+
Summary: A module that will help you make tables look pretty.
|
|
5
|
+
Author: SG-1022
|
|
6
|
+
Requires-Python: >=3.8
|
|
7
|
+
Description-Content-Type: text/markdown
|
|
8
|
+
|
|
9
|
+
# PrettyTableX
|
|
10
|
+
|
|
11
|
+
PrettyTableX is a free module build to make boring arrays into good looking tables via the console.
|
|
12
|
+
|
|
13
|
+
To get it, all you have to do is type
|
|
14
|
+
pip install PrettyTableX
|
|
15
|
+
in the terminal.
|
|
16
|
+
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: PrettyTableX
|
|
3
|
+
Version: 0.1.2
|
|
4
|
+
Summary: A module that will help you make tables look pretty.
|
|
5
|
+
Author: SG-1022
|
|
6
|
+
Requires-Python: >=3.8
|
|
7
|
+
Description-Content-Type: text/markdown
|
|
8
|
+
|
|
9
|
+
# PrettyTableX
|
|
10
|
+
|
|
11
|
+
PrettyTableX is a free module build to make boring arrays into good looking tables via the console.
|
|
12
|
+
|
|
13
|
+
To get it, all you have to do is type
|
|
14
|
+
pip install PrettyTableX
|
|
15
|
+
in the terminal.
|
|
16
|
+
|
|
@@ -4,9 +4,10 @@ build-backend = "setuptools.build_meta"
|
|
|
4
4
|
|
|
5
5
|
[project]
|
|
6
6
|
name = "PrettyTableX"
|
|
7
|
-
version = "0.1.
|
|
7
|
+
version = "0.1.2"
|
|
8
8
|
description = "A module that will help you make tables look pretty."
|
|
9
9
|
requires-python = ">=3.8"
|
|
10
|
+
readme = "README.md"
|
|
10
11
|
|
|
11
12
|
authors = [
|
|
12
13
|
{ name = "SG-1022" }
|
|
@@ -15,4 +16,3 @@ authors = [
|
|
|
15
16
|
dependencies = []
|
|
16
17
|
|
|
17
18
|
[tool.setuptools]
|
|
18
|
-
packages = ["PrettyTable"]
|
prettytablex-0.1.0/PKG-INFO
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
from .core import PrettyTable
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|