flavorpack 0.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.
- flavorpack-0.0.0/PKG-INFO +6 -0
- flavorpack-0.0.0/README.md +0 -0
- flavorpack-0.0.0/flavorpack.egg-info/PKG-INFO +6 -0
- flavorpack-0.0.0/flavorpack.egg-info/SOURCES.txt +7 -0
- flavorpack-0.0.0/flavorpack.egg-info/dependency_links.txt +1 -0
- flavorpack-0.0.0/flavorpack.egg-info/top_level.txt +1 -0
- flavorpack-0.0.0/main.py +6 -0
- flavorpack-0.0.0/pyproject.toml +7 -0
- flavorpack-0.0.0/setup.cfg +4 -0
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: flavorpack
|
|
3
|
+
Version: 0.0.0
|
|
4
|
+
Summary: Flavor Pack (flavorpack) is a cross-language packaging system that creates self-contained, portable executables using the Progressive Secure Package Format (PSPF) 2025 Edition.
|
|
5
|
+
Requires-Python: >=3.11
|
|
6
|
+
Description-Content-Type: text/markdown
|
|
File without changes
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: flavorpack
|
|
3
|
+
Version: 0.0.0
|
|
4
|
+
Summary: Flavor Pack (flavorpack) is a cross-language packaging system that creates self-contained, portable executables using the Progressive Secure Package Format (PSPF) 2025 Edition.
|
|
5
|
+
Requires-Python: >=3.11
|
|
6
|
+
Description-Content-Type: text/markdown
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
main
|
flavorpack-0.0.0/main.py
ADDED
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
[project]
|
|
2
|
+
name = "flavorpack"
|
|
3
|
+
version = "0.0.0"
|
|
4
|
+
description = "Flavor Pack (flavorpack) is a cross-language packaging system that creates self-contained, portable executables using the Progressive Secure Package Format (PSPF) 2025 Edition."
|
|
5
|
+
readme = "README.md"
|
|
6
|
+
requires-python = ">=3.11"
|
|
7
|
+
dependencies = []
|