https://github.com/nanoporetech/nanonet
Raw File
Tip revision: a5a832bb3c82fbde091554142fab491d4bec2664 authored by Christopher McIntyre on 29 April 2017, 20:15:13 UTC
Fix #51 (#52)
Tip revision: a5a832b
nanonetcall.spec
# -*- mode: python -*-

# Specification file to create executable using pyinstaller

block_cipher = None

a = Analysis(['nanonet/nanonetcall.py'],
             pathex=['.'],
             binaries=None,
             datas=[('nanonet/data/*', 'nanonet/data')],
             hiddenimports=[],
             hookspath=None,
             runtime_hooks=None,
             excludes=None,
             win_no_prefer_redirects=None,
             win_private_assemblies=None,
             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='nanonetcall',
          debug=False,
          strip=None,
          upx=True,
          console=True )

back to top