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.
- zuvo-0.0.1.dev1/PKG-INFO +13 -0
- zuvo-0.0.1.dev1/README.md +5 -0
- zuvo-0.0.1.dev1/pyproject.toml +14 -0
- zuvo-0.0.1.dev1/setup.cfg +4 -0
- zuvo-0.0.1.dev1/src/zuvo/__init__.py +2 -0
- zuvo-0.0.1.dev1/src/zuvo.egg-info/PKG-INFO +13 -0
- zuvo-0.0.1.dev1/src/zuvo.egg-info/SOURCES.txt +8 -0
- zuvo-0.0.1.dev1/src/zuvo.egg-info/dependency_links.txt +1 -0
- zuvo-0.0.1.dev1/src/zuvo.egg-info/entry_points.txt +2 -0
- zuvo-0.0.1.dev1/src/zuvo.egg-info/top_level.txt +1 -0
zuvo-0.0.1.dev1/PKG-INFO
ADDED
|
@@ -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,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,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 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
zuvo
|