From 876d65ff9e408b4cfc92e9b8f2d23431dc047fb0 Mon Sep 17 00:00:00 2001 From: Martina Oefelein Date: Sun, 12 Nov 2023 17:49:16 +0100 Subject: [PATCH] chore: add trove classifier for license PyPI and various other tools don't report any license for pytest-recording. Apparently, these tools rely on the trove classifier, not on the license setting in pyproject.toml or the LICENSE file in the project tree. Add the trove classifier for consistency and compatibility with these tools. --- docs/changelog.rst | 2 ++ pyproject.toml | 1 + 2 files changed, 3 insertions(+) diff --git a/docs/changelog.rst b/docs/changelog.rst index 13f2a42..0d62d3e 100644 --- a/docs/changelog.rst +++ b/docs/changelog.rst @@ -6,6 +6,8 @@ Changelog `Unreleased`_ ------------- +- Add trove classifier for license. + `0.13.0`_ - 2023-08-01 ---------------------- diff --git a/pyproject.toml b/pyproject.toml index 7bff717..357e313 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -16,6 +16,7 @@ classifiers = [ "Development Status :: 4 - Beta", "Framework :: Pytest", "Intended Audience :: Developers", + "License :: OSI Approved :: MIT License", "Topic :: Software Development :: Testing", "Programming Language :: Python", "Programming Language :: Python :: 3 :: Only",