-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathatlassian.spec
More file actions
46 lines (42 loc) · 844 Bytes
/
atlassian.spec
File metadata and controls
46 lines (42 loc) · 844 Bytes
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
from pathlib import Path
PROJECT_ROOT = Path.cwd().resolve()
SRC_ROOT = PROJECT_ROOT / "src"
a = Analysis(
[str(SRC_ROOT / "atlassian_cli" / "main.py")],
pathex=[str(SRC_ROOT)],
binaries=[],
datas=[],
hiddenimports=[
"prompt_toolkit",
"prompt_toolkit.key_binding",
"prompt_toolkit.keys",
"prompt_toolkit.layout",
"prompt_toolkit.layout.controls",
],
hookspath=[],
hooksconfig={},
runtime_hooks=[],
excludes=[],
noarchive=False,
)
pyz = PYZ(a.pure)
exe = EXE(
pyz,
a.scripts,
[],
exclude_binaries=True,
name="atlassian",
debug=False,
bootloader_ignore_signals=False,
strip=False,
upx=False,
console=True,
)
coll = COLLECT(
exe,
a.binaries,
a.datas,
strip=False,
upx=False,
name="atlassian",
)