-
Notifications
You must be signed in to change notification settings - Fork 0
/
pdb2pqr.spec
35 lines (33 loc) · 1002 Bytes
/
pdb2pqr.spec
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
27
28
29
30
31
32
33
34
35
# -*- mode: python -*-
a = Analysis(['pdb2pqr.py'],
pathex=None,
hiddenimports=[],
hookspath=None,
runtime_hooks=None)
pyz = PYZ(a.pure)
import os
if os.name == 'nt':
exe_name = 'pdb2pqr.exe'
else:
exe_name = 'pdb2pqr'
exe = EXE(pyz,
a.scripts,
exclude_binaries=True,
name='pdb2pqr.exe',
debug=False,
strip=None,
upx=True,
console=True )
coll = COLLECT(exe, Tree('dat/', 'dat'),
Tree('doc/', 'doc'),
Tree('examples/', 'examples'),
Tree('extensions/', 'extensions'),
[('propka30/Source/protein_bonds.dat', 'propka30/Source/protein_bonds.dat', 'DATA'),
('propka30/Source/ions.list', 'propka30/Source/ions.list', 'DATA'),
('BINARY_README.md', 'BINARY_README.md', 'DATA')],
a.binaries,
a.zipfiles,
a.datas,
strip=None,
upx=True,
name='pdb2pqr')