summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--docs/glossary.rst28
-rw-r--r--docs/narr/project.rst4
2 files changed, 12 insertions, 20 deletions
diff --git a/docs/glossary.rst b/docs/glossary.rst
index e0d4a1318..17e3e4822 100644
--- a/docs/glossary.rst
+++ b/docs/glossary.rst
@@ -48,12 +48,8 @@ Glossary
builds on Python's ``distutils`` to provide easier building,
distribution, and installation of libraries and applications.
- distribute
- `Distribute <https://pypi.org/project/distribute/>`_ is a fork of :term:`Setuptools` which runs on both Python 2 and Python 3.
- It is now in legacy state because :term:`Setuptools` now runs on both Python 2 and 3.
-
pkg_resources
- A module which ships with :term:`Setuptools` and :term:`distribute` that
+ A module which ships with :term:`Setuptools` that
provides an API for addressing "asset files" within a Python
:term:`package`. Asset files are static files, template files, etc;
basically anything non-Python-source that lives in a Python package can
@@ -87,23 +83,19 @@ Glossary
:term:`package`.
project
- (Setuptools/distutils terminology). A directory on disk which
- contains a ``setup.py`` file and one or more Python packages. The
- ``setup.py`` file contains code that allows the package(s) to be
- installed, distributed, and tested.
+ Setuptools / Python packaging terminology.
+ A directory on disk which contains a ``setup.py`` and / or ``pyproject.toml`` file and one or more Python packages.
+ The project files contain metadata that allow the package(s) to be installed, distributed, and tested.
distribution
- (Setuptools/distutils terminology). A file representing an
+ Setuptools / python packaging terminology. A file representing an
installable library or application. Distributions are usually
- files that have the suffix of ``.egg``, ``.tar.gz``, or ``.zip``.
- Distributions are the target of Setuptools-related commands such as
- ``easy_install``.
+ archives that have the suffix of ``.whl``, ``.tar.gz``, or ``.zip``.
+ Distributions are the target of packaging-related commands such as ``pip install``.
entry point
- A :term:`Setuptools` indirection, defined within a Setuptools
- :term:`distribution` setup.py. It is usually a name which refers
- to a function somewhere in a package which is held by the
- distribution.
+ A :term:`Setuptools` indirection, defined within a Setuptools :term:`distribution` (usually in ``setup.py`` or ``setup.cfg``).
+ It is usually a name which refers to a function somewhere in a package which is held by the distribution.
dotted Python name
A reference to a Python object by name using a string, in the form
@@ -1083,7 +1075,7 @@ Glossary
https://docs.pylonsproject.org/projects/waitress/en/latest/ for detailed
information.
- Green Unicorn
+ gunicorn
Aka ``gunicorn``, a fast :term:`WSGI` server that runs on Unix under
Python 2.6+ or Python 3.4+. See https://gunicorn.org/ for detailed
information.
diff --git a/docs/narr/project.rst b/docs/narr/project.rst
index 6493f0fe7..ee75587e9 100644
--- a/docs/narr/project.rst
+++ b/docs/narr/project.rst
@@ -1173,8 +1173,8 @@ One popular production alternative to the default Waitress server is
using the Apache web server rather than any "pure-Python" server like Waitress.
It is fast and featureful. See :ref:`modwsgi_tutorial` for details.
-Another good production alternative is :term:`Green Unicorn` (aka
-``gunicorn``). It's faster than Waitress and slightly easier to configure than
+Another good production alternative is :term:`gunicorn`.
+It's faster than Waitress and slightly easier to configure than
``mod_wsgi``, although it depends, in its default configuration, on having a
buffering HTTP proxy in front of it. It does not, as of this writing, work on
Windows.