diff options
author | Anderson Bravalheri <andersonbravalheri@gmail.com> | 2022-06-13 09:08:40 +0100 |
---|---|---|
committer | Anderson Bravalheri <andersonbravalheri@gmail.com> | 2022-06-13 09:08:40 +0100 |
commit | fd19ae6b54751bf0a01ddb3cc47b008d348f483c (patch) | |
tree | 8bb3ef767724bd4c0703316b345061f14d23ea7a /docs/userguide | |
parent | 1e8cf37631e5c19b941011cff33f3b3e9b1e8029 (diff) | |
download | python-setuptools-git-fd19ae6b54751bf0a01ddb3cc47b008d348f483c.tar.gz |
Remove unused parts
Diffstat (limited to 'docs/userguide')
-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 |