Skip to content

Commit 13cb1ba

Browse files
henryiiidi
andauthored
Apply suggestions from code review
Co-authored-by: Dustin Ingram <di@users.noreply.github.com>
1 parent 715412f commit 13cb1ba

2 files changed

Lines changed: 4 additions & 5 deletions

File tree

requirements.txt

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,3 @@ sphinx-autobuild==0.7.1
33
sphinx-tabs==2.0.0
44
git+https://github.com/python/python-docs-theme.git#egg=python-docs-theme
55
git+https://github.com/pypa/pypa-docs-theme.git#egg=pypa-docs-theme
6-

source/tutorials/packaging-projects.rst

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -95,8 +95,8 @@ would be completely different than the setuptools configuration described
9595
below. See :pep:`517` and :pep:`518` for background and details.
9696

9797

98-
Creating setup.cfg and setup.py
99-
-------------------------------
98+
Configuring metadata
99+
--------------------
100100

101101
You can place the metadata for your project in one of two places. Static
102102
information should be placed in :file:`setup.cfg`. This is simpler, easier to
@@ -107,7 +107,7 @@ really want to; both methods are shown below.
107107

108108
.. tabs::
109109

110-
.. tab:: Configure with setup.cfg (static)
110+
.. tab:: setup.cfg (static)
111111

112112
:file:`setup.cfg` is the configuration file for :ref:`setuptools`. It tells
113113
setuptools about your package (such as the name and version) as well as which
@@ -197,7 +197,7 @@ really want to; both methods are shown below.
197197
198198
setuptools.setup()
199199
200-
.. tab:: Configure with setup.py (dynamic)
200+
.. tab:: setup.py (dynamic)
201201

202202
:file:`setup.py` is the build script for :ref:`setuptools`. It tells setuptools
203203
about your package (such as the name and version) as well as which code files

0 commit comments

Comments
 (0)