@@ -442,14 +442,23 @@ distribution so others can use it. This functionality is provided by
442
442
<PyPUG:tutorials/packaging-projects>`.
443
443
444
444
445
- Transitioning from ``setup.py `` to `` setup.cfg ``
446
- ------------------------------------------------
445
+ Transitioning from ``setup.py `` to declarative config
446
+ -----------------------------------------------------
447
447
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.
453
462
454
463
.. _packaging-resources :
455
464
0 commit comments