Skip to content

bunpy create

bunpy create [flags] <template> [project-name]
bunpy create --list

See Project templates for a full walkthrough of each template’s generated structure.

Flags

FlagDescription
--yes, -yAccept all defaults without interactive prompts
--listPrint available template names and exit
--help, -hPrint help

Available templates

TemplateDescription
appRunnable application with __main__.py
libLibrary package with __init__.py
scriptSingle-file standalone script
workspaceMonorepo workspace

Examples

bunpy create app myapp --yes
bunpy create lib mylib
bunpy create script myscript --yes
bunpy create workspace myws --yes
bunpy create --list