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 64 65 66 67
|
[metadata]
name = pytest-doctestplus
url = https://github.com/scientific-python/pytest-doctestplus
author = Scientific Python Developers
classifiers =
Development Status :: 5 - Production/Stable
Framework :: Pytest
Intended Audience :: Developers
License :: OSI Approved :: BSD License
Operating System :: OS Independent
Programming Language :: Python
Programming Language :: Python :: 3
Programming Language :: Python :: 3 :: Only
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.11
Programming Language :: Python :: 3.12
Programming Language :: Python :: 3.13
Programming Language :: Python :: 3.14
Programming Language :: Python :: Implementation :: CPython
Topic :: Software Development :: Testing
Topic :: Utilities
license = BSD
description = Pytest plugin with advanced doctest features.
long_description = file: README.rst
long_description_content_type = text/x-rst
keywords = doctest, rst, pytest, py.test
[options]
zip_safe = False
packages = find:
python_requires = >=3.9
setup_requires =
setuptools_scm
install_requires =
pytest>=4.6
packaging>=17.0
[options.extras_require]
test =
numpy
pytest-remotedata>=0.3.2
setuptools>=30.3.0
sphinx
[options.entry_points]
pytest11 =
pytest_doctestplus = pytest_doctestplus.plugin
[options.packages.find]
exclude =
tests
[tool:pytest]
minversion = 4.6
testpaths = tests pytest_doctestplus
xfail_strict=true
filterwarnings =
error
ignore:file format.*:UserWarning
ignore:.*non-empty pattern match.*:FutureWarning
# For pytest-asyncio deprecations that is expected to be resolved upstream
# https://github.com/pytest-dev/pytest-asyncio/issues/924
ignore:The configuration option "asyncio_default_fixture_loop_scope":pytest.PytestDeprecationWarning
[flake8]
max-line-length = 100
|