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.
@@ -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
+
@@ -1,6 +1,6 @@
1
+ PrettyTable.py
2
+ README.md
1
3
  pyproject.toml
2
- PrettyTable/__init__.py
3
- PrettyTable/core.py
4
4
  PrettyTableX.egg-info/PKG-INFO
5
5
  PrettyTableX.egg-info/SOURCES.txt
6
6
  PrettyTableX.egg-info/dependency_links.txt
@@ -0,0 +1,8 @@
1
+ # PrettyTableX
2
+
3
+ PrettyTableX is a free module build to make boring arrays into good looking tables via the console.
4
+
5
+ To get it, all you have to do is type
6
+ pip install PrettyTableX
7
+ in the terminal.
8
+
@@ -4,9 +4,10 @@ build-backend = "setuptools.build_meta"
4
4
 
5
5
  [project]
6
6
  name = "PrettyTableX"
7
- version = "0.1.0"
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"]
@@ -1,6 +0,0 @@
1
- Metadata-Version: 2.4
2
- Name: PrettyTableX
3
- Version: 0.1.0
4
- Summary: A module that will help you make tables look pretty.
5
- Author: SG-1022
6
- Requires-Python: >=3.8
@@ -1 +0,0 @@
1
- from .core import PrettyTable
@@ -1,6 +0,0 @@
1
- Metadata-Version: 2.4
2
- Name: PrettyTableX
3
- Version: 0.1.0
4
- Summary: A module that will help you make tables look pretty.
5
- Author: SG-1022
6
- Requires-Python: >=3.8
File without changes