forked from twmr/pytest-sphinx
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
63 lines (55 loc) · 1.6 KB
/
pyproject.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
[project]
name = "pytest-sphinx"
version = "0.6.3"
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 Wimmer", email="[email protected]" }
]
maintainers = [
{ name="Thomas Wimmer", 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 :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: Implementation :: CPython",
"Operating System :: OS Independent",
"License :: OSI Approved :: BSD License",
]
# Requirements
dependencies = [
"pytest >=8.1.1; python_version >= '3.8'",
"pytest==7.4.4; python_version <= '3.7'",
]
[project.optional-dependencies]
lint = [
"isort >= 5",
"flake8",
"black",
"mypy"
]
[project.urls]
homepage = "https://github.com/thisch/pytest-sphinx"
[project.entry-points."pytest11"]
"sphinx" = "pytest_sphinx"
[tool.isort]
profile = "black"
[tool.mypy]
strict = true
warn_unused_ignores = false # mypy#8823
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"