Skip to content

Commit faa04a5

Browse files
author
electrocoder
committed
update
1 parent 471f21a commit faa04a5

File tree

3 files changed

+13
-12
lines changed

3 files changed

+13
-12
lines changed

README.md

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,4 +63,10 @@ python setup.py py2app -A --iconfile icon.png
6363

6464
### Windows
6565

66-
python setup.py py2exe --iconfile icon.png
66+
python setup.py py2exe -A --iconfile icon.png
67+
68+
## auto-py-to-exe
69+
70+
### Windows
71+
72+
python auto-py-to-exe

requirements.txt

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
paho-mqtt
22
pyinstaller
33
configparser
4-
py2app
4+
py2app==0.24
5+
auto-py-to-exe

setup.py

Lines changed: 4 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,13 @@
11
"""
2-
py2app/py2exe build script for MyApplication.
2+
This is a setup.py script generated by py2applet
33
4-
Will automatically ensure that all build prerequisites are available
5-
via ez_setup
6-
7-
Usage (Mac OS X):
8-
python setup.py py2app
9-
10-
Usage (Windows):
11-
python setup.py py2exe
4+
Usage:
5+
python setup.py py2app
126
"""
137

148
from setuptools import setup
159

16-
APP = ['MQTTClient.py']
10+
APP = ['.\\MQTTClient.py']
1711
DATA_FILES = []
1812
OPTIONS = {}
1913

0 commit comments

Comments
 (0)