Configure PyInstaller for Python binary builds with spec files and bundling options.
Scanned 9/2/2026
Install to Claude Code
npx -y skills add a5c-ai/babysitter --skill pyinstaller-config --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of Pyinstaller Config?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/a5c-ai-pyinstaller-config-babysitter)More formats (shields.io, HTML) on the badges page.
---
name: pyinstaller-config
description: Configure PyInstaller for Python binary builds with spec files and bundling options.
allowed-tools: Read, Write, Edit, Bash, Glob, Grep
graph:
domains: [domain:software-engineering]
specializations: [specialization:cli-mcp-development]
skillAreas: [skill-area:cli-design, skill-area:deployment-infrastructure-management]
roles: [role:backend-engineer, role:platform-engineer]
workflows: [workflow:feature-development]
topics: [topic:developer-experience]
---
# PyInstaller Config
Configure PyInstaller for Python binary builds.
## Generated Patterns
```python
# 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
Is this your skill, or is something wrong with this listing? Request removal or report an issue. Author removals are honored within 72 hours.
No comments yet. Be the first to comment!