From d09773472da758b436d0df621ae39f3d11921138 Mon Sep 17 00:00:00 2001 From: Tony Narlock Date: Sat, 3 Sep 2022 13:58:09 -0500 Subject: [PATCH] build(deps): Add PEP-621 pyproject.toml See also: https://peps.python.org/pep-0621/ --- pyproject.toml | 41 +++++++++++++++++++++++++++++++++++++++++ 1 file changed, 41 insertions(+) create mode 100644 pyproject.toml diff --git a/pyproject.toml b/pyproject.toml new file mode 100644 index 0000000..6a26da8 --- /dev/null +++ b/pyproject.toml @@ -0,0 +1,41 @@ +[project] +name = "pytest.sphinx" +version = "0.4.0" +description = "Doctest plugin for pytest with support for Sphinx-specific doctest-directives" +readme = "README.rst" +requires-python = ">=3.7" +license = { file = "LICENSE" } +keywords = ["sphinx", "pytest", "rst"] +authors = [ + { name="Thomas Hisch", email="t.hisch@gmail.com" } +] +maintainers = [ + { name="Thomas Hisch", email="t.hisch@gmail.com" } +] + +classifiers = [ + "Development Status :: 4 - Beta", + "Framework :: Pytest", + "Intended Audience :: Developers", + "Topic :: Software Development :: Testing", + "Programming Language :: Python", + "Programming Language :: Python :: 3", + "Programming Language :: Python :: 3.7", + "Programming Language :: Python :: 3.8", + "Programming Language :: Python :: 3.9", + "Programming Language :: Python :: 3.10", + "Programming Language :: Python :: Implementation :: CPython", + "Operating System :: OS Independent", + "License :: OSI Approved :: BSD License", +] + +# Requirements +dependencies = [ + "pytest >=7.0.0", +] + +[project.urls] +homepage = "https://github.com/thisch/pytest-sphinx" + +[project.entry-points."pytest11"] +"sphinx" = "pytest_sphinx"