diff options
author | Jason R. Coombs <jaraco@jaraco.com> | 2020-03-07 15:37:40 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-03-07 15:37:40 -0500 |
commit | 837df4d84c53977e1d0e4fd4b473e71f4503c959 (patch) | |
tree | 9d169e56ff434501e73574215adb9ccda21b1a7d | |
parent | dbbc6bba1c00ff193cea59a7eadee639d6ac3a11 (diff) | |
parent | 6a3729676d6aef85396d6fcf593a140e56ce32c7 (diff) | |
download | external_python_setuptools-837df4d84c53977e1d0e4fd4b473e71f4503c959.tar.gz external_python_setuptools-837df4d84c53977e1d0e4fd4b473e71f4503c959.tar.bz2 external_python_setuptools-837df4d84c53977e1d0e4fd4b473e71f4503c959.zip |
Merge pull request #2011 from pastelmind/patch-1
Fix broken link to distutils docs for package_data
-rw-r--r-- | changelog.d/2011.doc.rst | 1 | ||||
-rw-r--r-- | docs/setuptools.txt | 2 |
2 files changed, 2 insertions, 1 deletions
diff --git a/changelog.d/2011.doc.rst b/changelog.d/2011.doc.rst new file mode 100644 index 00000000..e36fb6a7 --- /dev/null +++ b/changelog.d/2011.doc.rst @@ -0,0 +1 @@ +Fix broken link to distutils docs on package_data diff --git a/docs/setuptools.txt b/docs/setuptools.txt index efcd0a86..22e3c872 100644 --- a/docs/setuptools.txt +++ b/docs/setuptools.txt @@ -941,7 +941,7 @@ python.org website. If using the setuptools-specific ``include_package_data`` argument, files specified by ``package_data`` will *not* be automatically added to the manifest unless they are listed in the MANIFEST.in file.) -__ http://docs.python.org/dist/node11.html +__ https://docs.python.org/3/distutils/setupscript.html#installing-package-data Sometimes, the ``include_package_data`` or ``package_data`` options alone aren't sufficient to precisely define what files you want included. For |