exebuilder 0.2.1__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,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: exebuilder
3
- Version: 0.2.1
3
+ Version: 0.3.0
4
4
  Summary: A simple EXE builder for Python files.
5
5
  Author: Victor Zou
6
6
  Project-URL: Homepage, https://github.com/qzou1222-alt/exebuilder
@@ -54,7 +54,13 @@ Runs the Python file as a temporary EXE.
54
54
  ## CLI
55
55
 
56
56
  ```bash
57
- python exebuilder my_file.py
57
+ exebuilder my_file.py
58
+ ```
59
+
60
+ or
61
+
62
+ ```bash
63
+ python exebuilder.py my_file.py
58
64
  ```
59
65
 
60
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,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: exebuilder
3
- Version: 0.2.1
3
+ Version: 0.3.0
4
4
  Summary: A simple EXE builder for Python files.
5
5
  Author: Victor Zou
6
6
  Project-URL: Homepage, https://github.com/qzou1222-alt/exebuilder
@@ -54,7 +54,13 @@ Runs the Python file as a temporary EXE.
54
54
  ## CLI
55
55
 
56
56
  ```bash
57
- python exebuilder my_file.py
57
+ exebuilder my_file.py
58
+ ```
59
+
60
+ or
61
+
62
+ ```bash
63
+ python exebuilder.py my_file.py
58
64
  ```
59
65
 
60
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
@@ -4,9 +4,11 @@ build-backend = "setuptools.build_meta"
4
4
  [project.urls]
5
5
  Homepage = "https://github.com/qzou1222-alt/exebuilder"
6
6
  Issues = "https://github.com/qzou1222-alt/exebuilder/issues"
7
+ [project.scripts]
8
+ exebuilder = "exebuilder.__main__:main"
7
9
  [project]
8
10
  name = "exebuilder"
9
- version = "0.2.1"
11
+ version = "0.3.0"
10
12
  authors = [
11
13
  { name="Victor Zou" }
12
14
  ]
File without changes