-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
pyproject.toml
41 lines (36 loc) · 1.01 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
[build-system]
requires = ["flit_core >=3.2,<4"]
build-backend = "flit_core.buildapi"
[project]
name = "scipy_doctest"
maintainers = [
{name = "SciPy developers", email = "scipy-dev@python.org"}
]
readme = "README.md"
requires-python = ">=3.8"
license={file = "LICENSE"}
dynamic = ["version", "description"]
classifiers = [
"Development Status :: 4 - Beta",
"License :: OSI Approved :: BSD License",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3",
"Framework :: Pytest",
]
dependencies = [
"numpy>=1.19.5",
"pytest",
]
[project.optional-dependencies]
test = [
"scipy",
"matplotlib"
]
[project.urls]
Home = "https://github.com/scipy/scipy_doctest"
[tool.pytest.ini_options]
addopts = "--verbose --color=yes"
# specify project entrypoints to make each plugin discoverable by pytest
# ref: https://docs.pytest.org/en/latest/how-to/writing_plugins.html#making-your-plugin-installable-by-others
[project.entry-points.pytest11]
scipy_doctest = "scipy_doctest.plugin"