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.
@@ -1,8 +1,10 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: exebuilder
3
- Version: 0.2.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
- python exebuilder my_file.py
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:
@@ -43,7 +43,13 @@ Runs the Python file as a temporary EXE.
43
43
  ## CLI
44
44
 
45
45
  ```bash
46
- python exebuilder my_file.py
46
+ exebuilder my_file.py
47
+ ```
48
+
49
+ or
50
+
51
+ ```bash
52
+ python exebuilder.py my_file.py
47
53
  ```
48
54
 
49
55
  creates:
@@ -1,8 +1,10 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: exebuilder
3
- Version: 0.2.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
- python exebuilder my_file.py
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:
@@ -3,5 +3,6 @@ pyproject.toml
3
3
  exebuilder.egg-info/PKG-INFO
4
4
  exebuilder.egg-info/SOURCES.txt
5
5
  exebuilder.egg-info/dependency_links.txt
6
+ exebuilder.egg-info/entry_points.txt
6
7
  exebuilder.egg-info/requires.txt
7
8
  exebuilder.egg-info/top_level.txt
@@ -0,0 +1,2 @@
1
+ [console_scripts]
2
+ exebuilder = exebuilder.__main__:main
@@ -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.2.0"
11
+ version = "0.3.0"
8
12
  authors = [
9
13
  { name="Victor Zou" }
10
14
  ]
File without changes