rev-api-terminal 1.0.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,6 @@
1
+ Metadata-Version: 2.4
2
+ Name: rev-api-terminal
3
+ Version: 1.0.0
4
+ Summary: An anonymous multi-tier API framework built from scratch
5
+ Requires-Python: >=3.7
6
+ Description-Content-Type: text/markdown
@@ -0,0 +1,4 @@
1
+ # rev/__init__.py
2
+ from .rev_hub import Engine, WindowComponent
3
+
4
+ __all__ = ["Engine", "WindowComponent"]
@@ -0,0 +1,13 @@
1
+ [build-system]
2
+ requires = ["setuptools>=61.0"]
3
+ build-backend = "setuptools.build_meta"
4
+
5
+ [project]
6
+ name = "rev-api-terminal" # 👈 Your brand new, unique global package name!
7
+ version = "1.0.0"
8
+ description = "An anonymous multi-tier API framework built from scratch"
9
+ readme = "README.md"
10
+ requires-python = ">=3.7"
11
+
12
+ [tool.setuptools]
13
+ py-modules = ["rev", "__init__"]
@@ -0,0 +1,6 @@
1
+ Metadata-Version: 2.4
2
+ Name: rev-api-terminal
3
+ Version: 1.0.0
4
+ Summary: An anonymous multi-tier API framework built from scratch
5
+ Requires-Python: >=3.7
6
+ Description-Content-Type: text/markdown
@@ -0,0 +1,6 @@
1
+ __init__.py
2
+ pyproject.toml
3
+ rev_api_terminal.egg-info/PKG-INFO
4
+ rev_api_terminal.egg-info/SOURCES.txt
5
+ rev_api_terminal.egg-info/dependency_links.txt
6
+ rev_api_terminal.egg-info/top_level.txt
@@ -0,0 +1,2 @@
1
+ __init__
2
+ rev
@@ -0,0 +1,4 @@
1
+ [egg_info]
2
+ tag_build =
3
+ tag_date = 0
4
+