diff options
author | Anderson Bravalheri <andersonbravalheri+github@gmail.com> | 2022-06-13 09:04:51 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-06-13 09:04:51 +0100 |
commit | 1e8cf37631e5c19b941011cff33f3b3e9b1e8029 (patch) | |
tree | a17782819c5e78bf50bb55b1607ce87374113b46 /docs/userguide | |
parent | 4e9780ff399636a541b0e39b89110f684b7ac2b9 (diff) | |
download | python-setuptools-git-1e8cf37631e5c19b941011cff33f3b3e9b1e8029.tar.gz |
Apply suggestions from code review
Diffstat (limited to 'docs/userguide')
-rw-r--r-- | docs/userguide/extension.rst | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/userguide/extension.rst b/docs/userguide/extension.rst index 4ecfc3ee..fb620c50 100644 --- a/docs/userguide/extension.rst +++ b/docs/userguide/extension.rst @@ -55,9 +55,9 @@ Once a project containing such entry points has been activated on ``sys.path``, how setuptools' own commands are installed: the setuptools project's setup script defines entry points for them! -The commands ``sdist``, ``build_py`` and ``build_ext`` are specially useful +The commands ``sdist``, ``build_py`` and ``build_ext`` are especially useful to customize ``setuptools`` builds. Note however that when overwriting existing -commands you should be very careful to maintain API compatibility. +commands, you should be very careful to maintain API compatibility. Custom commands should try to replicate the same overall behaviour as the original classes, and when possible, even inherit from them. |