-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathvaultctl.spec
More file actions
116 lines (110 loc) · 2.69 KB
/
Copy pathvaultctl.spec
File metadata and controls
116 lines (110 loc) · 2.69 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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
# -*- mode: python ; coding: utf-8 -*-
"""PyInstaller spec file for vaultctl."""
import sys
from pathlib import Path
block_cipher = None
# 소스 경로
src_path = Path("src")
templates_path = src_path / "vaultctl" / "templates"
a = Analysis(
[str(src_path / "vaultctl" / "__main__.py")],
pathex=[str(src_path)],
binaries=[],
datas=[
# Include Jinja2 templates / Jinja2 템플릿 포함
(str(templates_path), "vaultctl/templates"),
],
hiddenimports=[
# vaultctl 모듈
"vaultctl",
"vaultctl.cli",
"vaultctl.config",
"vaultctl.vault_client",
"vaultctl.utils",
"vaultctl.templates",
# commands package
"vaultctl.commands",
"vaultctl.commands.setup",
# admin subpackage
"vaultctl.commands.admin",
"vaultctl.commands.admin.secrets",
"vaultctl.commands.admin.token",
"vaultctl.commands.admin.credentials",
"vaultctl.commands.admin.setup",
"vaultctl.commands.admin.apt_setup",
"vaultctl.commands.admin.repo",
# user subpackage
"vaultctl.commands.user",
"vaultctl.commands.user.compose",
"vaultctl.commands.user.extended",
# 외부 의존성
"typer",
"rich",
"httpx",
"pydantic",
"pydantic_settings",
"dotenv",
"keyring",
"jinja2",
"ruamel.yaml",
# typer 관련
"typer.core",
"typer.main",
"click",
"click.core",
# rich 관련
"rich.console",
"rich.table",
"rich.panel",
"rich.progress",
"rich.prompt",
# pydantic 관련
"pydantic.fields",
"pydantic_settings.sources",
# jinja2 관련
"jinja2.ext",
"jinja2.loaders",
"markupsafe",
# ruamel.yaml 관련
"ruamel.yaml.main",
"ruamel.yaml.comments",
"ruamel.yaml.clib",
],
hookspath=[],
hooksconfig={},
runtime_hooks=[],
excludes=[
"tkinter",
"matplotlib",
"numpy",
"pandas",
"PIL",
"cv2",
],
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="vaultctl",
debug=False,
bootloader_ignore_signals=False,
strip=True,
upx=True,
upx_exclude=[],
runtime_tmpdir=None,
console=True,
disable_windowed_traceback=False,
argv_emulation=False,
target_arch=None,
codesign_identity=None,
entitlements_file=None,
)