Skip to content

Commit

Permalink
build(deps): Add PEP-621 pyproject.toml
Browse files Browse the repository at this point in the history
  • Loading branch information
tony committed Sep 3, 2022
1 parent 890f028 commit d097734
Showing 1 changed file with 41 additions and 0 deletions.
41 changes: 41 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -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="[email protected]" }
]
maintainers = [
{ name="Thomas Hisch", email="[email protected]" }
]

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"

0 comments on commit d097734

Please sign in to comment.