@@ -41,26 +41,28 @@ Key terms
41
41
file format standards. They maintain a variety of tools, documentation
42
42
and issue trackers on both `GitHub <https://github.com/pypa >`__ and
43
43
`BitBucket <https://bitbucket.org/pypa/ >`__.
44
- * `` distutils `` is the original build and distribution system first added to
45
- the Python standard library in 1998. While direct use of `` distutils `` is
46
- being phased out, it still laid the foundation for the current packaging
44
+ * :mod: ` distutils ` is the original build and distribution system first added
45
+ to the Python standard library in 1998. While direct use of :mod: ` distutils `
46
+ is being phased out, it still laid the foundation for the current packaging
47
47
and distribution infrastructure, and it not only remains part of the
48
48
standard library, but its name lives on in other ways (such as the name
49
49
of the mailing list used to coordinate Python packaging standards
50
50
development).
51
- * `` setuptools `` is a (largely) drop-in replacement for `` distutils ` ` first
51
+ * `setuptools `_ is a (largely) drop-in replacement for :mod: ` distutils ` first
52
52
published in 2004. Its most notable addition over the unmodified
53
- `` distutils ` ` tools was the ability to declare dependencies on other
53
+ :mod: ` distutils ` tools was the ability to declare dependencies on other
54
54
packages. It is currently recommended as a more regularly updated
55
- alternative to `` distutils ` ` that offers consistent support for more
55
+ alternative to :mod: ` distutils ` that offers consistent support for more
56
56
recent packaging standards across a wide range of Python versions.
57
- * `` wheel `` (in this context) is a project that adds the ``bdist_wheel ``
58
- command to `` distutils ``/`` setuptools `` . This produces a cross platform
57
+ * `wheel `_ (in this context) is a project that adds the ``bdist_wheel ``
58
+ command to :mod: ` distutils `/` setuptools `_ . This produces a cross platform
59
59
binary packaging format (called "wheels" or "wheel files" and defined in
60
60
:pep: `427 `) that allows Python libraries, even those including binary
61
61
extensions, to be installed on a system without needing to be built
62
62
locally.
63
63
64
+ .. _setuptools : https://setuptools.pypa.io/en/latest/setuptools.html
65
+ .. _wheel : http://wheel.readthedocs.org
64
66
65
67
Open source licensing and collaboration
66
68
=======================================
0 commit comments