summaryrefslogtreecommitdiff
path: root/CONTRIBUTING.rst
diff options
context:
space:
mode:
authorAnthony Sottile <asottile@umich.edu>2020-09-08 09:52:59 -0700
committerGitHub <noreply@github.com>2020-09-08 09:52:59 -0700
commit7da6ebede08c6473fcadf589dccd6d59d56fa22e (patch)
treef6855f63e4cb669333d3a983d2427d0e41a96cce /CONTRIBUTING.rst
parent4df39e3a1d8066ab9262a7a1bc234bd3dbce1f66 (diff)
downloadpytest-7da6ebede08c6473fcadf589dccd6d59d56fa22e.tar.gz
Update pytest-dev requirements
- be more vague about "packaging metadata" over explicitly mentioning `setup.py` (such that `pyproject.toml`-based distributions are allowed) - drop extensions on `README.txt` / `LICENSE.txt` (it's more common to have `.md` / `.rst` / no extension) - remove duplicate mention of license packaging metadata
Diffstat (limited to 'CONTRIBUTING.rst')
-rw-r--r--CONTRIBUTING.rst8
1 files changed, 4 insertions, 4 deletions
diff --git a/CONTRIBUTING.rst b/CONTRIBUTING.rst
index 4481fee38..50bd0e5e7 100644
--- a/CONTRIBUTING.rst
+++ b/CONTRIBUTING.rst
@@ -148,16 +148,16 @@ You can submit your plugin by subscribing to the `pytest-dev mail list
mail pointing to your existing pytest plugin repository which must have
the following:
-- PyPI presence with a ``setup.py`` that contains a license, ``pytest-``
+- PyPI presence with packaging metadata that contains a ``pytest-``
prefixed name, version number, authors, short and long description.
- a ``tox.ini`` for running tests using `tox <https://tox.readthedocs.io>`_.
-- a ``README.txt`` describing how to use the plugin and on which
+- a ``README`` describing how to use the plugin and on which
platforms it runs.
-- a ``LICENSE.txt`` file or equivalent containing the licensing
- information, with matching info in ``setup.py``.
+- a ``LICENSE`` file containing the licensing information, with
+ matching info in its packaging metadata.
- an issue tracker for bug reports and enhancement requests.