From cba9a403c87a298acd1f5ca34994e82c0ee4cd46 Mon Sep 17 00:00:00 2001 From: memoselyk Date: Sun, 5 Jun 2016 18:28:35 -0500 Subject: [PATCH] Point to setuptools documentation in readthedocs.io --- docs/reference/pip_install.rst | 10 +++++----- docs/user_guide.rst | 2 +- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/docs/reference/pip_install.rst b/docs/reference/pip_install.rst index 6dac31e8c..1724a3f27 100644 --- a/docs/reference/pip_install.rst +++ b/docs/reference/pip_install.rst @@ -423,7 +423,7 @@ Finding Packages pip searches for packages on `PyPI`_ using the `http simple interface `_, -which is documented `here `_ +which is documented `here `_ and `there `_ pip offers a number of Package Index Options for modifying how packages are found. @@ -633,7 +633,7 @@ local hash. +++++++++++++++++++ "Editable" installs are fundamentally `"setuptools develop mode" -`_ +`_ installs. You can install local projects or VCS projects in "editable" mode:: @@ -654,7 +654,7 @@ Controlling setup_requires ++++++++++++++++++++++++++ Setuptools offers the ``setup_requires`` `setup() keyword -`_ +`_ for specifying dependencies that need to be present in order for the `setup.py` script to run. Internally, Setuptools uses ``easy_install`` to fulfill these dependencies. @@ -694,7 +694,7 @@ the following commands:: The ``egg_info`` command should create egg metadata for the package, as described in the setuptools documentation at -http://pythonhosted.org/setuptools/setuptools.html#egg-info-create-egg-metadata-and-set-build-tags +https://setuptools.readthedocs.io/en/latest/setuptools.html#egg-info-create-egg-metadata-and-set-build-tags The ``install`` command should implement the complete process of installing the package to the target directory XXX. @@ -723,7 +723,7 @@ No other build system commands are invoked by the ``pip install`` command. Installing a package from a wheel does not invoke the build system at all. .. _PyPI: http://pypi.python.org/pypi/ -.. _setuptools extras: http://packages.python.org/setuptools/setuptools.html#declaring-extras-optional-features-with-their-own-dependencies +.. _setuptools extras: https://setuptools.readthedocs.io/en/latest/setuptools.html#declaring-extras-optional-features-with-their-own-dependencies diff --git a/docs/user_guide.rst b/docs/user_guide.rst index 6bffdc22a..695d4ff45 100644 --- a/docs/user_guide.rst +++ b/docs/user_guide.rst @@ -101,7 +101,7 @@ In practice, there are 4 common uses of Requirements files: It's important to be clear that pip determines package dependencies using `install_requires metadata -`_, +`_, not by discovering `requirements.txt` files embedded in projects. See also: