aboutsummaryrefslogtreecommitdiffstats
path: root/pathod/release/pathoc.spec
blob: 22649076f51b2946bc91e512b29e3741954fbd17 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# -*- mode: python -*-

from PyInstaller.utils.hooks import collect_data_files

a = Analysis(['../pathoc'],
             binaries=None,
             datas=None,
             hiddenimports=['_cffi_backend'],
             hookspath=None,
             runtime_hooks=None,
             excludes=None)
pyz = PYZ(a.pure, a.zipped_data)
exe = EXE(pyz,
          a.scripts,
          a.binaries,
          a.zipfiles,
          a.datas,
          name='pathoc',
          debug=False,
          strip=None,
          upx=True,
          console=True )