You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This change also includes all the fixes necessary for Sphinx 3 not to
explode during the build in the strict mode. In particular, it now barks
on the case-sensitive `:term:` targets that don't match.
Copy file name to clipboardExpand all lines: source/tutorials/packaging-projects.rst
+8-7Lines changed: 8 additions & 7 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -10,7 +10,7 @@ A simple project
10
10
----------------
11
11
12
12
This tutorial uses a simple project named ``example_pkg``. If you are unfamiliar
13
-
with Python's modules and :term:`import packages <import package>`, take a few
13
+
with Python's modules and :term:`import packages <Import Package>`, take a few
14
14
minutes to read over the `Python documentation for packages and modules`_. Even if you already have a project that you want to package up, we recommend following this tutorial as-is using this example package and then trying with your own package.
15
15
16
16
To create this project locally, create the following file structure:
@@ -112,7 +112,7 @@ minimal set:
112
112
will just be a link to GitHub, GitLab, Bitbucket, or similar code hosting
113
113
service.
114
114
- ``packages`` is a list of all Python :term:`import packages <Import
115
-
Package>` that should be included in the :term:`distribution package`.
115
+
Package>` that should be included in the :term:`Distribution Package`.
116
116
Instead of listing each package manually, we can use :func:`find_packages`
117
117
to automatically discover all packages and subpackages. In this case, the
118
118
list of packages will be ``example_pkg`` as that's the only package present.
@@ -181,8 +181,8 @@ MIT license:
181
181
Generating distribution archives
182
182
--------------------------------
183
183
184
-
The next step is to generate :term:`distribution packages <distribution
185
-
package>` for the package. These are archives that are uploaded to the Package
184
+
The next step is to generate :term:`distribution packages <Distribution
185
+
Package>` for the package. These are archives that are uploaded to the Package
186
186
Index and can be installed by :ref:`pip`.
187
187
188
188
Make sure you have the latest versions of ``setuptools`` and ``wheel``
@@ -217,8 +217,8 @@ files in the :file:`dist` directory:
0 commit comments