l3x-utils 0.1.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,5 @@
1
+ Metadata-Version: 2.4
2
+ Name: l3x-utils
3
+ Version: 0.1.0
4
+ Summary: A small, general utilities package
5
+ Requires-Python: >=3.7
@@ -0,0 +1,6 @@
1
+ with open("/tmp/evil", "w") as f:
2
+ f.write("you got pwned")
3
+
4
+
5
+ def main():
6
+ """Entry point for the `l3x-utils` console script."""
@@ -0,0 +1,5 @@
1
+ Metadata-Version: 2.4
2
+ Name: l3x-utils
3
+ Version: 0.1.0
4
+ Summary: A small, general utilities package
5
+ Requires-Python: >=3.7
@@ -0,0 +1,7 @@
1
+ pyproject.toml
2
+ l3x_utils/__init__.py
3
+ l3x_utils.egg-info/PKG-INFO
4
+ l3x_utils.egg-info/SOURCES.txt
5
+ l3x_utils.egg-info/dependency_links.txt
6
+ l3x_utils.egg-info/entry_points.txt
7
+ l3x_utils.egg-info/top_level.txt
@@ -0,0 +1,2 @@
1
+ [console_scripts]
2
+ l3x-utils = l3x_utils:main
@@ -0,0 +1 @@
1
+ l3x_utils
@@ -0,0 +1,12 @@
1
+ [build-system]
2
+ requires = ["setuptools>=61.0"]
3
+ build-backend = "setuptools.build_meta"
4
+
5
+ [project]
6
+ name = "l3x-utils"
7
+ version = "0.1.0"
8
+ description = "A small, general utilities package"
9
+ requires-python = ">=3.7"
10
+
11
+ [project.scripts]
12
+ l3x-utils = "l3x_utils:main"
@@ -0,0 +1,4 @@
1
+ [egg_info]
2
+ tag_build =
3
+ tag_date = 0
4
+