summaryrefslogtreecommitdiff
path: root/docs/userguide
diff options
context:
space:
mode:
authorAnderson Bravalheri <andersonbravalheri@gmail.com>2021-11-05 19:03:05 +0000
committerAnderson Bravalheri <andersonbravalheri@gmail.com>2021-11-05 19:19:20 +0000
commiteca0111c29721056e8af7ac0d08d5f678fe7473e (patch)
tree1d85e5d70c21db244cd2e6fa85a82984e96217b8 /docs/userguide
parent974dbb03769a500c5077d37291817f30359a0d7b (diff)
downloadpython-setuptools-git-eca0111c29721056e8af7ac0d08d5f678fe7473e.tar.gz
Document setuptools replacements
Diffstat (limited to 'docs/userguide')
-rw-r--r--docs/userguide/extension.rst8
1 files changed, 8 insertions, 0 deletions
diff --git a/docs/userguide/extension.rst b/docs/userguide/extension.rst
index 93b59501..966c6fde 100644
--- a/docs/userguide/extension.rst
+++ b/docs/userguide/extension.rst
@@ -45,6 +45,14 @@ entry points in the active distributions on ``sys.path``. In fact, this is
how setuptools' own commands are installed: the setuptools project's setup
script defines entry points for them!
+.. note::
+ When creating commands, and specially when defining custom ways of building
+ compiled extensions (for example via ``build_ext``), you might want to
+ handle exceptions such as ``CompileError``, ``LinkError``, ``LibError``,
+ among others. These exceptions are available in the ``setuptools.errors``
+ module.
+
+
Adding ``setup()`` Arguments
----------------------------