diff options
-rw-r--r-- | docs/userguide/extension.rst | 14 | ||||
-rw-r--r-- | docs/userguide/index.rst | 1 |
2 files changed, 1 insertions, 14 deletions
diff --git a/docs/userguide/extension.rst b/docs/userguide/extension.rst index fb620c50..fb589446 100644 --- a/docs/userguide/extension.rst +++ b/docs/userguide/extension.rst @@ -166,19 +166,7 @@ The ``egg_info`` command looks for extension points in an ``egg_info.writers`` group, and calls them to write the files. Here's a simple example of an extension defining a setup argument ``foo_bar``, which is a list of lines that will be written to ``foo_bar.txt`` in the EGG-INFO directory of any -project that uses the argument:: - - setup( - # ... - entry_points={ - "distutils.setup_keywords": [ - "foo_bar = setuptools.dist:assert_string_list", - ], - "egg_info.writers": [ - "foo_bar.txt = setuptools.command.egg_info:write_arg", - ], - }, - ) +project that uses the argument: .. code-block:: ini diff --git a/docs/userguide/index.rst b/docs/userguide/index.rst index 74e9b1e4..11f7ea67 100644 --- a/docs/userguide/index.rst +++ b/docs/userguide/index.rst @@ -33,5 +33,4 @@ quickstart provides an overview of the new workflow. declarative_config pyproject_config commands - functionalities_rewrite miscellaneous |