exebuilder 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,17 @@
1
+ Metadata-Version: 2.4
2
+ Name: exebuilder
3
+ Version: 0.1.0
4
+ Summary: A simple EXE builder for Python files.
5
+ Author: Victor Zou
6
+ Requires-Python: >=3.10
7
+ Description-Content-Type: text/markdown
8
+ Requires-Dist: pyinstaller
9
+
10
+ # exebuilder
11
+
12
+ Simple EXE builder for Python files.
13
+
14
+ ## Install
15
+
16
+ ```bash
17
+ pip install exebuilder
@@ -0,0 +1,8 @@
1
+ # exebuilder
2
+
3
+ Simple EXE builder for Python files.
4
+
5
+ ## Install
6
+
7
+ ```bash
8
+ pip install exebuilder
@@ -0,0 +1,17 @@
1
+ Metadata-Version: 2.4
2
+ Name: exebuilder
3
+ Version: 0.1.0
4
+ Summary: A simple EXE builder for Python files.
5
+ Author: Victor Zou
6
+ Requires-Python: >=3.10
7
+ Description-Content-Type: text/markdown
8
+ Requires-Dist: pyinstaller
9
+
10
+ # exebuilder
11
+
12
+ Simple EXE builder for Python files.
13
+
14
+ ## Install
15
+
16
+ ```bash
17
+ pip install exebuilder
@@ -0,0 +1,7 @@
1
+ ReadMe.md
2
+ pyproject.toml
3
+ exebuilder.egg-info/PKG-INFO
4
+ exebuilder.egg-info/SOURCES.txt
5
+ exebuilder.egg-info/dependency_links.txt
6
+ exebuilder.egg-info/requires.txt
7
+ exebuilder.egg-info/top_level.txt
@@ -0,0 +1 @@
1
+ pyinstaller
@@ -0,0 +1,17 @@
1
+ [build-system]
2
+ requires = ["setuptools>=61.0"]
3
+ build-backend = "setuptools.build_meta"
4
+
5
+ [project]
6
+ name = "exebuilder"
7
+ version = "0.1.0"
8
+ authors = [
9
+ { name="Victor Zou" }
10
+ ]
11
+ description = "A simple EXE builder for Python files."
12
+ readme = "ReadMe.md"
13
+ requires-python = ">=3.10"
14
+
15
+ dependencies = [
16
+ "pyinstaller"
17
+ ]
@@ -0,0 +1,4 @@
1
+ [egg_info]
2
+ tag_build =
3
+ tag_date = 0
4
+