[go: up one dir, main page]

File: keysync-gui-folder.spec

package info (click to toggle)
keysync 0.2.1.1-2
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 2,388 kB
  • ctags: 230
  • sloc: python: 2,102; xml: 802; sh: 143; makefile: 4
file content (26 lines) | stat: -rw-r--r-- 746 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
# -*- mode: python -*-
a = Analysis(['keysync-gui'],
             pathex=['c:\\Users\\abel\\Documents\\keysync'],
             hiddenimports=[],
             hookspath=None,
             runtime_hooks=None)
pyz = PYZ(a.pure)
icon_dir = Tree('icons', prefix='icons')
exe = EXE(pyz,
          a.scripts,
          exclude_binaries=True,
          name='KeySync.exe',
          icon='icons/keysync.ico',
          
          debug=False,
          strip=None,
          upx=True,
          console=True)
coll = COLLECT(exe,
               a.binaries,
               a.zipfiles,
               a.datas,
               icon_dir,
               strip=None,
               upx=True,
               name='KeySync')