Creating Built Distributions¶
A “built distribution” is what you’re probably used to thinking of either as a “binary package” or an “installer” (depending on your background). It’s not necessarily binary, though, because it might contain bytecode. (And “installer” is a term specific to the world of mainstream desktop systems.)
A built distribution is how you make life as easy as possible for installers of your module distribution: for users of RPM-based Linux systems, it’s a binary RPM; for Windows users, it’s an executable installer; for Debian-based Linux users, it’s a Debian package; and so forth.
The available commands for built distributions are:
Command |
Description |
Notes |
|---|---|---|
AppImage application bundle
( |
||
DEB distribution ( |
||
DMG disk image ( |
||
macOS application bundle ( |
||
Windows installer ( |
||
RPM distribution ( |
Added in version 7.0: Support for the bdist_appimage and bdist_deb commands.
Notes