===================
This patch release fixes some problems in the management and releasing of
the package.
- Add a ``py.typed`` file to ship the package with type hints (PEP 561).
- Use ``setuptools-scm`` to automatically manage the version of the package
*and* the content of the source distribution based on the git repository:
* the source distribution now matches the git repository, with the only
exception of ``_version.py``, which is not tracked by git; it's generated by
``setuptools-scm`` and included in the package;
* tox.ini and Makefile were updated to account for the fact that ``_version.py``
doesn't exist in the repository before installing the package.
- The new attribute ``cloup.__version_tuple__`` stores the version as a tuple
(of *at least* 3 elements).