diff options
author | Anderson Bravalheri <andersonbravalheri+github@gmail.com> | 2022-06-14 10:46:56 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-06-14 10:46:56 +0100 |
commit | 7e855eca96a2e852d31aabfc0e444b3e7504bb46 (patch) | |
tree | 1fc47ec87b163a79a72506648b8592c3212c0a33 /docs/userguide/ext_modules.rst | |
parent | 875d771dcccc966b6f84c456a692515ac93956b5 (diff) | |
download | python-setuptools-git-7e855eca96a2e852d31aabfc0e444b3e7504bb46.tar.gz |
Improve remark about external dependencies
Diffstat (limited to 'docs/userguide/ext_modules.rst')
-rw-r--r-- | docs/userguide/ext_modules.rst | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/docs/userguide/ext_modules.rst b/docs/userguide/ext_modules.rst index 4ed50a3c..213e13c0 100644 --- a/docs/userguide/ext_modules.rst +++ b/docs/userguide/ext_modules.rst @@ -91,8 +91,9 @@ The linker searches for libraries in the following order: .. important:: All files used to compile your extension need to be available on the system - in the moment setuptools builds your project, so please make sure to include some - documentation on how users can obtain operating system level dependencies + when building the package, so please make sure to include some documentation + on how developers interested in building your package from source + can obtain operating system level dependencies (e.g. compilers and external binary libraries/artifacts). You will also need to make sure that all auxiliary files that are contained |