Skip to content

Commit fbf3ded

Browse files
lwasserhenryiii
andauthored
Update package-structure-code/python-package-distribution-files-sdist-wheel.md
Co-authored-by: Henry Schreiner <[email protected]>
1 parent 1cbae63 commit fbf3ded

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

package-structure-code/python-package-distribution-files-sdist-wheel.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,7 @@ pyproject.toml file. The pyproject.toml and other files that may be included in
110110
source distributions are not included in wheels because it is a built
111111
distribution.
112112

113-
The wheel (.whl) is your built binary distribution. **Binary files** are the built / compiled source files. These files are ready to be installed. A wheel (**.whl**) is a **.zip** file containing all of the files needed to directly install your package. All of the files in a wheel are binaries - this means that code is already compiled / built. Wheels are thus faster to install - particularly if you have a package that requires build steps.
113+
The wheel (.whl) is your built binary distribution. **Binary files** are the built / compiled source files. These files are ready to be installed. A wheel (**.whl**) is a **zip** file containing all of the files needed to directly install your package. All of the files in a wheel are binaries - this means that code is already compiled / built. Wheels are thus faster to install - particularly if you have a package that requires build steps.
114114

115115
The wheel does not contain any of your
116116
packages configuration files such as **setup.cfg** or **pyproject.toml**. This

0 commit comments

Comments
 (0)