updating documentation_test as example entrypoint

This commit is contained in:
2019-11-22 13:31:20 +00:00
parent 7b4942adcf
commit 3e8988f369
13 changed files with 49 additions and 4 deletions

View File

@@ -0,0 +1,37 @@
# -*- mode: python ; coding: utf-8 -*-
block_cipher = None
a = Analysis(['src/documentation_test/documentation_test.pyclear'],
pathex=['/Users/dtomlinson/OneDrive - William Hill Organisation Limited/Mac/git_repos/python-VM/documentation-test'],
binaries=[],
datas=[],
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,
[],
exclude_binaries=True,
name='documentation_test',
debug=False,
bootloader_ignore_signals=False,
strip=False,
upx=True,
console=True )
coll = COLLECT(exe,
a.binaries,
a.zipfiles,
a.datas,
strip=False,
upx=True,
upx_exclude=[],
name='documentation_test')