zuvo 0.0.1.dev1__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,13 @@
1
+ Metadata-Version: 2.4
2
+ Name: zuvo
3
+ Version: 0.0.1.dev1
4
+ Summary: Zero-boilerplate CLI framework with i18n and compilation support
5
+ Author-email: wipodev <ajwipo@email.com>
6
+ Requires-Python: >=3.8
7
+ Description-Content-Type: text/markdown
8
+
9
+ # Zuvo
10
+
11
+ > Framework zero-boilerplate para la creación de CLIs en Python.
12
+
13
+ _Actively under development. First stable version coming soon.._
@@ -0,0 +1,5 @@
1
+ # Zuvo
2
+
3
+ > Framework zero-boilerplate para la creación de CLIs en Python.
4
+
5
+ _Actively under development. First stable version coming soon.._
@@ -0,0 +1,14 @@
1
+ [build-system]
2
+ requires = ["setuptools>=61.0"]
3
+ build-backend = "setuptools.build_meta"
4
+
5
+ [project]
6
+ name = "zuvo"
7
+ version = "0.0.1.dev1"
8
+ description = "Zero-boilerplate CLI framework with i18n and compilation support"
9
+ readme = "README.md"
10
+ authors = [{ name = "wipodev", email = "ajwipo@email.com" }]
11
+ requires-python = ">=3.8"
12
+
13
+ [project.scripts]
14
+ zuvo = "zuvo:main"
@@ -0,0 +1,4 @@
1
+ [egg_info]
2
+ tag_build =
3
+ tag_date = 0
4
+
@@ -0,0 +1,2 @@
1
+ def main():
2
+ print("Zuvo is in active development. Coming soon!")
@@ -0,0 +1,13 @@
1
+ Metadata-Version: 2.4
2
+ Name: zuvo
3
+ Version: 0.0.1.dev1
4
+ Summary: Zero-boilerplate CLI framework with i18n and compilation support
5
+ Author-email: wipodev <ajwipo@email.com>
6
+ Requires-Python: >=3.8
7
+ Description-Content-Type: text/markdown
8
+
9
+ # Zuvo
10
+
11
+ > Framework zero-boilerplate para la creación de CLIs en Python.
12
+
13
+ _Actively under development. First stable version coming soon.._
@@ -0,0 +1,8 @@
1
+ README.md
2
+ pyproject.toml
3
+ src/zuvo/__init__.py
4
+ src/zuvo.egg-info/PKG-INFO
5
+ src/zuvo.egg-info/SOURCES.txt
6
+ src/zuvo.egg-info/dependency_links.txt
7
+ src/zuvo.egg-info/entry_points.txt
8
+ src/zuvo.egg-info/top_level.txt
@@ -0,0 +1,2 @@
1
+ [console_scripts]
2
+ zuvo = zuvo:main
@@ -0,0 +1 @@
1
+ zuvo