This repository was archived by the owner on Jul 1, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathmetaboverse-cli.spec
More file actions
79 lines (76 loc) · 1.76 KB
/
metaboverse-cli.spec
File metadata and controls
79 lines (76 loc) · 1.76 KB
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
# -*- mode: python3.8 ; coding: utf-8 -*-
import os
import sys
import platform
sys.setrecursionlimit(5000)
block_cipher = None
output_name = 'metaboverse-cli-' + str(platform.system().lower())
a = Analysis(
[
os.path.join('metaboverse_cli', '__main__.py'),
os.path.join('metaboverse_cli', '__init__.py'),
os.path.join('metaboverse_cli', 'arguments.py'),
os.path.join('metaboverse_cli', 'utils.py')
],
pathex=[
'metaboverse_cli'
],
datas=[
(
os.path.join(
'metaboverse_cli',
'analyze',
'data',
'metabolite_mapping.pickle.zip'),
os.path.join(
'analyze',
'data')
),
(
'README.md',
'.'
)
],
hiddenimports=[
'scipy.special.cython_special',
'scipy.spatial.transform._rotation_groups',
'cmath'],
hookspath=[],
runtime_hooks=[],
excludes=[
os.path.join('metaboverse_cli', 'test'),
os.path.join('metaboverse_cli', '__test__.py'),
os.path.join('metaboverse_cli', 'curate', 'test'),
os.path.join('metaboverse_cli', 'curate', '__test__.py'),
os.path.join('metaboverse_cli', 'mapper', 'test'),
os.path.join('metaboverse_cli', 'mapper', '__test__.py'),
os.path.join('metaboverse_cli', 'analyze', 'test'),
os.path.join('metaboverse_cli', 'analyze', '__test__.py'),
os.path.join('metaboverse_cli', 'analyze', 'test', 'HSA.zip'),
],
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,
a.binaries,
a.zipfiles,
a.datas,
[],
name=output_name,
debug=False,
bootloader_ignore_signals=False,
strip=False,
upx=True,
upx_exclude=[],
runtime_tmpdir=None,
console=True
)