NitroStack Logo
/python
/cli
/pack

Pack Command

Build a deployable wheel. Python has no nitrostack-cli build / dist/index.js step.

Bash
nitrostack-py pack --dry-run    # list files; do not write an artifact
nitrostack-py pack              # write dist/*.whl

pack uses setuptools (same backend as the SDK), refreshes requirements.txt from pyproject.toml when possible, and always includes .env.example. The real .env and other secrets are never packed. Temporary build directories are deleted afterwards.

Next steps