Skip to content

Commit 2bcabe1

Browse files
authored
[Docs] Quickstart - add pyproject.toml info to the declarative config section (#4204)
2 parents 04a6bfe + 87b86a5 commit 2bcabe1

File tree

3 files changed

+18
-8
lines changed

3 files changed

+18
-8
lines changed

docs/userguide/declarative_config.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ Configuring setuptools using ``setup.cfg`` files
1111
build API) is desired, a ``setup.py`` file containing a ``setup()`` function
1212
call is still required even if your configuration resides in ``setup.cfg``.
1313

14-
``Setuptools`` allows using configuration files (usually :file:`setup.cfg`)
14+
``Setuptools`` allows using configuration files (for example, :file:`setup.cfg`)
1515
to define a package’s metadata and other options that are normally supplied
1616
to the ``setup()`` function (declarative config).
1717

docs/userguide/quickstart.rst

+16-7
Original file line numberDiff line numberDiff line change
@@ -442,14 +442,23 @@ distribution so others can use it. This functionality is provided by
442442
<PyPUG:tutorials/packaging-projects>`.
443443

444444

445-
Transitioning from ``setup.py`` to ``setup.cfg``
446-
------------------------------------------------
445+
Transitioning from ``setup.py`` to declarative config
446+
-----------------------------------------------------
447447
To avoid executing arbitrary scripts and boilerplate code, we are transitioning
448-
into a full-fledged ``setup.cfg`` to declare your package information instead
449-
of running ``setup()``. This inevitably brings challenges due to a different
450-
syntax. :doc:`Here </userguide/declarative_config>` we provide a quick guide to
451-
understanding how ``setup.cfg`` is parsed by ``setuptools`` to ease the pain of
452-
transition.
448+
from defining all your package information by running ``setup()`` to doing this
449+
declaratively - by using ``pyproject.toml`` (or older ``setup.cfg``).
450+
451+
To ease the challenges of transitioning, we provide a quick
452+
:doc:`guide </userguide/pyproject_config>` to understanding how ``pyproject.toml``
453+
is parsed by ``setuptools``. (Alternatively, here is the
454+
:doc:`guide </userguide/declarative_config>` for ``setup.cfg``).
455+
456+
.. note::
457+
458+
The approach ``setuptools`` would like to take is to eventually use a single
459+
declarative format (``pyproject.toml``) instead of maintaining 2
460+
(``pyproject.toml`` / ``setup.cfg``). Yet, chances are, ``setup.cfg`` will
461+
continue to be maintained for a long time.
453462

454463
.. _packaging-resources:
455464

newsfragments/4200.doc.rst

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Updated "Quickstart" to describe the current status of ``setup.cfg`` and ``pyproject.toml`` -- by :user:`VladimirFokow`

0 commit comments

Comments
 (0)