Pyinstaller config
Skill a5c-ai/babysitter/library/specializations/cli-mcp-development/skills/pyinstaller-config
Configure PyInstaller for Python binary builds with spec files and bundling options.From its SKILL.md
npx -y skills add a5c-ai/babysitter --skill pyinstaller-configAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
SKILL.md
1.3 KB, 214 tokens by cl100k_base, as published. Nobody here has run it
PyInstaller Config
Configure PyInstaller for Python binary builds.
Generated Patterns
# myapp.spec
block_cipher = None
a = Analysis(
['src/myapp/__main__.py'],
pathex=[],
binaries=[],
datas=[('src/myapp/data', 'data')],
hiddenimports=['click', 'rich'],
hookspath=[],
hooksconfig={},
runtime_hooks=[],
excludes=[],
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='myapp',
debug=False,
bootloader_ignore_signals=False,
strip=False,
upx=True,
console=True,
)
Target Processes
- cli-binary-distribution
- package-manager-publishing
What ships with it: 1 file
160 B alongside SKILL.md
- README.md160 B