@@ -379,7 +379,7 @@ Finding Packages
379
379
380
380
pip searches for packages on `PyPI `_ using the
381
381
`HTTP simple interface <https://pypi.org/simple/ >`_,
382
- which is documented `here <https://setuptools.readthedocs.io/en/latest/easy_install.html#package-index -api >`_
382
+ which is documented `here <https://packaging.python.org/specifications/simple-repository -api/ >`_
383
383
and `there <https://www.python.org/dev/peps/pep-0503/ >`_.
384
384
385
385
pip offers a number of package index options for modifying how packages are
@@ -620,7 +620,7 @@ option in pip's command line.
620
620
^^^^^^^^^^^^^^^^^^^
621
621
622
622
"Editable" installs are fundamentally `"setuptools develop mode"
623
- <https://setuptools.readthedocs.io/en/latest/setuptools .html#development-mode > `_
623
+ <https://setuptools.readthedocs.io/en/latest/userguide/development_mode .html> `_
624
624
installs.
625
625
626
626
You can install local projects or VCS projects in "editable" mode:
@@ -653,7 +653,7 @@ Controlling setup_requires
653
653
--------------------------
654
654
655
655
Setuptools offers the ``setup_requires `` `setup() keyword
656
- <https://setuptools.readthedocs.io/en/latest/setuptools .html#new-and-changed-setup-keywords > `_
656
+ <https://setuptools.readthedocs.io/en/latest/userguide/keywords .html> `_
657
657
for specifying dependencies that need to be present in order for the
658
658
``setup.py `` script to run. Internally, Setuptools uses ``easy_install ``
659
659
to fulfill these dependencies.
@@ -693,7 +693,7 @@ the following commands::
693
693
694
694
The ``egg_info `` command should create egg metadata for the package, as
695
695
described in the setuptools documentation at
696
- https://setuptools.readthedocs.io/en/latest/setuptools .html#egg-info-create-egg-metadata-and-set-build-tags
696
+ https://setuptools.readthedocs.io/en/latest/userguide/commands .html#egg-info-create-egg-metadata-and-set-build-tags
697
697
698
698
The ``install `` command should implement the complete process of installing the
699
699
package to the target directory XXX.
0 commit comments