Skip to content
Snippets Groups Projects
Commit bd1b7da8 authored by Holger Nahrstaedt's avatar Holger Nahrstaedt
Browse files

Try to build exe with pyinstaller

parent 726a419a
No related branches found
No related tags found
No related merge requests found
......@@ -31,7 +31,6 @@ var/
# Usually these files are written by a python script from a template
# before PyInstaller builds the exe, so as to inject date/other infos into it.
*.manifest
*.spec
# Installer logs
pip-log.txt
......
......@@ -44,7 +44,7 @@ install:
- conda info -a
- conda install --yes conda-build setuptools pip pytest-pylint parameterized cryptography
- conda install --yes pycryptodomex scrypt pyyaml pytest pytest-mock coverage mock appdirs
- conda install --yes ecdsa requests future websocket-client pytz six Click events prettytable
- conda install --yes ecdsa requests future websocket-client pytz six Click events prettytable pyinstaller
# Upgrade to the latest version of pip to avoid it displaying warnings
......@@ -65,8 +65,8 @@ test_script:
after_test:
# If tests are successful, create binary packages for the project.
- "pip install wheel"
- "python setup.py bdist_wheel"
- pyinstaller beempy-onedir.spec
- 7z a beempy.zip %APPVEYOR_BUILD_FOLDER%\dist\beempy
#- "%CMD_IN_ENV% python setup.py bdist_wininst"
#- "%CMD_IN_ENV% python setup.py bdist_msi"
- ps: "ls dist"
......
# -*- mode: python -*-
import os
import glob
import platform
block_cipher = None
os_name = platform.system()
binaries = []
data_files = []
a = Analysis(['beem/cli.py'],
pathex=['beem'],
binaries=binaries,
datas=data_files,
hiddenimports=[],
hookspath=[],
runtime_hooks=[],
excludes=['matplotlib', 'scipy', 'pandas', 'numpy', 'PyQt5', 'tkinter'],
win_no_prefer_redirects=False,
win_private_assemblies=False,
cipher=block_cipher)
pyz = PYZ(a.pure, a.zipped_data,
cipher=block_cipher)
exe = EXE(
pyz,
a.scripts,
exclude_binaries=True,
name='beempy',
debug=False,
strip=False,
upx=False,
console=True,
icon='beempy.ico',
)
coll = COLLECT(
exe,
a.binaries,
a.zipfiles,
a.datas,
name='beempy',
strip=False,
upx=False
)
\ No newline at end of file
beempy.ico

17.3 KiB

# -*- mode: python -*-
import os
import glob
import platform
block_cipher = None
os_name = platform.system()
binaries = []
data_files = []
a = Analysis(['beem/cli.py'],
pathex=['beem'],
binaries=binaries,
datas=data_files,
hiddenimports=[],
hookspath=[],
runtime_hooks=[],
excludes=['matplotlib', 'scipy', 'pandas', 'numpy', 'PyQt5', 'tkinter'],
win_no_prefer_redirects=False,
win_private_assemblies=False,
cipher=block_cipher)
pyz = PYZ(a.pure, a.zipped_data,
cipher=block_cipher)
exe = EXE(pyz,
a.scripts,
a.binaries,
a.zipfiles,
a.datas,
name='beempy',
debug=False,
strip=False,
upx=False,
runtime_tmpdir=None,
console=True,
icon='beempy.ico',
)
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment