Add files via upload

This commit is contained in:
Jason2866
2021-01-27 02:13:30 -08:00
committed by GitHub
parent bf1fc07f91
commit fd98844e95
6 changed files with 99 additions and 1 deletions

BIN
icon-256.icns Normal file

Binary file not shown.

View File

@@ -1,2 +1,2 @@
pyserial>=3.5
#pyserial>=3.5
PyQt5>=5.10

2
requirements_build.txt Normal file
View File

@@ -0,0 +1,2 @@
pyinstaller
wheel

32
tasmotizer.spec Normal file
View File

@@ -0,0 +1,32 @@
# -*- mode: python ; coding: utf-8 -*-
block_cipher = None
a = Analysis(['tasmotizer.py'],
binaries=[],
datas=[('banner.py', '.')],
hiddenimports=[],
hookspath=[],
runtime_hooks=[],
excludes=[],
win_no_prefer_redirects=False,
win_private_assemblies=False,
cipher=block_cipher,
noarchive=False)
pyz = PYZ(a.pure, a.zipped_data,
cipher=block_cipher)
exe = EXE(pyz,
a.scripts,
a.binaries,
a.zipfiles,
a.datas,
[],
name='tasmotizer-1.2.1',
debug=False,
bootloader_ignore_signals=False,
strip=False,
upx=True,
upx_exclude=[],
runtime_tmpdir=None,
console=False , icon='icon-256.ico')

32
tasmotizer32.spec Normal file
View File

@@ -0,0 +1,32 @@
# -*- mode: python ; coding: utf-8 -*-
block_cipher = None
a = Analysis(['tasmotizer.py'],
binaries=[],
datas=[('banner.py', '.')],
hiddenimports=[],
hookspath=[],
runtime_hooks=[],
excludes=[],
win_no_prefer_redirects=False,
win_private_assemblies=False,
cipher=block_cipher,
noarchive=False)
pyz = PYZ(a.pure, a.zipped_data,
cipher=block_cipher)
exe = EXE(pyz,
a.scripts,
a.binaries,
a.zipfiles,
a.datas,
[],
name='tasmotizer-1.2.1-x86',
debug=False,
bootloader_ignore_signals=False,
strip=False,
upx=True,
upx_exclude=[],
runtime_tmpdir=None,
console=False , icon='icon-256.ico')

32
tasmotizer_mac.spec Normal file
View File

@@ -0,0 +1,32 @@
# -*- mode: python -*-
block_cipher = None
a = Analysis(['tasmotizer.py'],
binaries=[],
datas=[('banner.py', '.')],
hiddenimports=[],
hookspath=[],
runtime_hooks=[],
excludes=[],
win_no_prefer_redirects=False,
win_private_assemblies=False,
cipher=block_cipher,
noarchive=False)
pyz = PYZ(a.pure, a.zipped_data,
cipher=block_cipher)
exe = EXE(pyz,
a.scripts,
a.binaries,
a.zipfiles,
a.datas,
[],
name='tasmotizer-1.2.1',
debug=False,
strip=False,
upx=True,
console=False , icon='icon-256.icns')
app = BUNDLE(exe,
name='tasmotizer-1.2.1.app',
icon='icon-256.icns',
bundle_identifier='com.tasmota.tasmotizer')