exebuilder 0.2.0__tar.gz → 0.3.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.
- {exebuilder-0.2.0 → exebuilder-0.3.0}/PKG-INFO +10 -2
- {exebuilder-0.2.0 → exebuilder-0.3.0}/ReadMe.md +7 -1
- {exebuilder-0.2.0 → exebuilder-0.3.0}/exebuilder.egg-info/PKG-INFO +10 -2
- {exebuilder-0.2.0 → exebuilder-0.3.0}/exebuilder.egg-info/SOURCES.txt +1 -0
- exebuilder-0.3.0/exebuilder.egg-info/entry_points.txt +2 -0
- {exebuilder-0.2.0 → exebuilder-0.3.0}/pyproject.toml +6 -2
- {exebuilder-0.2.0 → exebuilder-0.3.0}/exebuilder.egg-info/dependency_links.txt +0 -0
- {exebuilder-0.2.0 → exebuilder-0.3.0}/exebuilder.egg-info/requires.txt +0 -0
- {exebuilder-0.2.0 → exebuilder-0.3.0}/exebuilder.egg-info/top_level.txt +0 -0
- {exebuilder-0.2.0 → exebuilder-0.3.0}/setup.cfg +0 -0
|
@@ -1,8 +1,10 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: exebuilder
|
|
3
|
-
Version: 0.
|
|
3
|
+
Version: 0.3.0
|
|
4
4
|
Summary: A simple EXE builder for Python files.
|
|
5
5
|
Author: Victor Zou
|
|
6
|
+
Project-URL: Homepage, https://github.com/qzou1222-alt/exebuilder
|
|
7
|
+
Project-URL: Issues, https://github.com/qzou1222-alt/exebuilder/issues
|
|
6
8
|
Requires-Python: >=3.10
|
|
7
9
|
Description-Content-Type: text/markdown
|
|
8
10
|
Requires-Dist: pyinstaller
|
|
@@ -52,7 +54,13 @@ Runs the Python file as a temporary EXE.
|
|
|
52
54
|
## CLI
|
|
53
55
|
|
|
54
56
|
```bash
|
|
55
|
-
|
|
57
|
+
exebuilder my_file.py
|
|
58
|
+
```
|
|
59
|
+
|
|
60
|
+
or
|
|
61
|
+
|
|
62
|
+
```bash
|
|
63
|
+
python exebuilder.py my_file.py
|
|
56
64
|
```
|
|
57
65
|
|
|
58
66
|
creates:
|
|
@@ -1,8 +1,10 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: exebuilder
|
|
3
|
-
Version: 0.
|
|
3
|
+
Version: 0.3.0
|
|
4
4
|
Summary: A simple EXE builder for Python files.
|
|
5
5
|
Author: Victor Zou
|
|
6
|
+
Project-URL: Homepage, https://github.com/qzou1222-alt/exebuilder
|
|
7
|
+
Project-URL: Issues, https://github.com/qzou1222-alt/exebuilder/issues
|
|
6
8
|
Requires-Python: >=3.10
|
|
7
9
|
Description-Content-Type: text/markdown
|
|
8
10
|
Requires-Dist: pyinstaller
|
|
@@ -52,7 +54,13 @@ Runs the Python file as a temporary EXE.
|
|
|
52
54
|
## CLI
|
|
53
55
|
|
|
54
56
|
```bash
|
|
55
|
-
|
|
57
|
+
exebuilder my_file.py
|
|
58
|
+
```
|
|
59
|
+
|
|
60
|
+
or
|
|
61
|
+
|
|
62
|
+
```bash
|
|
63
|
+
python exebuilder.py my_file.py
|
|
56
64
|
```
|
|
57
65
|
|
|
58
66
|
creates:
|
|
@@ -1,10 +1,14 @@
|
|
|
1
1
|
[build-system]
|
|
2
2
|
requires = ["setuptools>=61.0"]
|
|
3
3
|
build-backend = "setuptools.build_meta"
|
|
4
|
-
|
|
4
|
+
[project.urls]
|
|
5
|
+
Homepage = "https://github.com/qzou1222-alt/exebuilder"
|
|
6
|
+
Issues = "https://github.com/qzou1222-alt/exebuilder/issues"
|
|
7
|
+
[project.scripts]
|
|
8
|
+
exebuilder = "exebuilder.__main__:main"
|
|
5
9
|
[project]
|
|
6
10
|
name = "exebuilder"
|
|
7
|
-
version = "0.
|
|
11
|
+
version = "0.3.0"
|
|
8
12
|
authors = [
|
|
9
13
|
{ name="Victor Zou" }
|
|
10
14
|
]
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|