2018-10-15 03:44:32 +08:00
|
|
|
[metadata]
|
|
|
|
name = pytest
|
|
|
|
description = pytest: simple powerful testing with Python
|
|
|
|
long_description = file: README.rst
|
2020-06-05 00:58:28 +08:00
|
|
|
long_description_content_type = text/x-rst
|
2018-10-17 03:48:39 +08:00
|
|
|
url = https://docs.pytest.org/en/latest/
|
2018-10-15 13:30:07 +08:00
|
|
|
author = Holger Krekel, Bruno Oliveira, Ronny Pfannschmidt, Floris Bruynooghe, Brianna Laugher, Florian Bruhin and others
|
2020-06-05 00:58:28 +08:00
|
|
|
license = MIT
|
|
|
|
license_file = LICENSE
|
|
|
|
platforms = unix, linux, osx, cygwin, win32
|
2018-10-15 03:44:32 +08:00
|
|
|
classifiers =
|
|
|
|
Development Status :: 6 - Mature
|
|
|
|
Intended Audience :: Developers
|
|
|
|
License :: OSI Approved :: MIT License
|
|
|
|
Operating System :: MacOS :: MacOS X
|
2020-06-05 00:58:28 +08:00
|
|
|
Operating System :: Microsoft :: Windows
|
|
|
|
Operating System :: POSIX
|
|
|
|
Programming Language :: Python :: 3
|
2019-05-28 07:31:52 +08:00
|
|
|
Programming Language :: Python :: 3 :: Only
|
2018-10-15 03:44:32 +08:00
|
|
|
Programming Language :: Python :: 3.7
|
2019-05-28 07:31:52 +08:00
|
|
|
Programming Language :: Python :: 3.8
|
2020-05-07 20:26:55 +08:00
|
|
|
Programming Language :: Python :: 3.9
|
2021-03-27 22:04:26 +08:00
|
|
|
Programming Language :: Python :: 3.10
|
2020-06-05 00:58:28 +08:00
|
|
|
Topic :: Software Development :: Libraries
|
|
|
|
Topic :: Software Development :: Testing
|
|
|
|
Topic :: Utilities
|
|
|
|
keywords = test, unittest
|
|
|
|
project_urls =
|
2020-12-18 00:55:36 +08:00
|
|
|
Changelog=https://docs.pytest.org/en/stable/changelog.html
|
|
|
|
Twitter=https://twitter.com/pytestdotorg
|
2020-06-05 00:58:28 +08:00
|
|
|
Source=https://github.com/pytest-dev/pytest
|
|
|
|
Tracker=https://github.com/pytest-dev/pytest/issues
|
2018-10-15 13:30:07 +08:00
|
|
|
|
|
|
|
[options]
|
|
|
|
packages =
|
|
|
|
_pytest
|
|
|
|
_pytest._code
|
2019-01-21 02:45:12 +08:00
|
|
|
_pytest._io
|
|
|
|
_pytest.assertion
|
2018-10-15 13:30:07 +08:00
|
|
|
_pytest.config
|
2019-01-21 02:45:12 +08:00
|
|
|
_pytest.mark
|
2019-12-03 02:18:04 +08:00
|
|
|
pytest
|
2020-06-05 00:58:28 +08:00
|
|
|
install_requires =
|
2020-09-23 19:28:10 +08:00
|
|
|
attrs>=19.2.0
|
2020-06-05 00:58:28 +08:00
|
|
|
iniconfig
|
|
|
|
packaging
|
2021-08-26 20:26:51 +08:00
|
|
|
pluggy>=0.12,<2.0
|
2020-06-15 22:14:48 +08:00
|
|
|
py>=1.8.2
|
2021-07-09 22:09:05 +08:00
|
|
|
tomli>=1.0.0
|
2020-06-05 00:58:28 +08:00
|
|
|
atomicwrites>=1.0;sys_platform=="win32"
|
|
|
|
colorama;sys_platform=="win32"
|
|
|
|
importlib-metadata>=0.12;python_version<"3.8"
|
2021-12-25 19:04:59 +08:00
|
|
|
python_requires = >=3.7
|
2020-06-05 00:58:28 +08:00
|
|
|
package_dir =
|
|
|
|
=src
|
|
|
|
setup_requires =
|
2020-12-13 18:10:06 +08:00
|
|
|
setuptools
|
|
|
|
setuptools-scm>=6.0
|
2020-06-05 00:58:28 +08:00
|
|
|
zip_safe = no
|
2018-10-15 03:44:32 +08:00
|
|
|
|
2018-10-15 13:30:07 +08:00
|
|
|
[options.entry_points]
|
|
|
|
console_scripts =
|
2020-06-05 00:58:28 +08:00
|
|
|
pytest=pytest:console_main
|
|
|
|
py.test=pytest:console_main
|
|
|
|
|
|
|
|
[options.extras_require]
|
|
|
|
testing =
|
|
|
|
argcomplete
|
|
|
|
hypothesis>=3.56
|
|
|
|
mock
|
|
|
|
nose
|
2021-04-24 21:09:11 +08:00
|
|
|
pygments>=2.7.2
|
2020-06-05 00:58:28 +08:00
|
|
|
requests
|
|
|
|
xmlschema
|
2018-10-15 03:44:32 +08:00
|
|
|
|
2020-07-04 17:30:40 +08:00
|
|
|
[options.package_data]
|
|
|
|
_pytest = py.typed
|
|
|
|
pytest = py.typed
|
|
|
|
|
2013-10-03 18:35:13 +08:00
|
|
|
[build_sphinx]
|
2021-03-14 02:30:24 +08:00
|
|
|
source_dir = doc/en/
|
|
|
|
build_dir = doc/build
|
2013-10-03 18:35:13 +08:00
|
|
|
all_files = 1
|
|
|
|
|
2017-04-23 22:59:08 +08:00
|
|
|
[check-manifest]
|
|
|
|
ignore =
|
2020-06-05 00:58:28 +08:00
|
|
|
src/_pytest/_version.py
|
2017-04-23 22:59:08 +08:00
|
|
|
|
2015-07-09 20:56:56 +08:00
|
|
|
[devpi:upload]
|
|
|
|
formats = sdist.tgz,bdist_wheel
|
2019-07-08 15:04:19 +08:00
|
|
|
|
|
|
|
[mypy]
|
2019-11-19 01:12:13 +08:00
|
|
|
mypy_path = src
|
2020-05-01 19:40:17 +08:00
|
|
|
check_untyped_defs = True
|
2020-08-01 18:06:13 +08:00
|
|
|
disallow_any_generics = True
|
2019-07-08 15:04:19 +08:00
|
|
|
ignore_missing_imports = True
|
|
|
|
no_implicit_optional = True
|
2020-01-28 05:18:35 +08:00
|
|
|
show_error_codes = True
|
2019-07-08 15:04:19 +08:00
|
|
|
strict_equality = True
|
|
|
|
warn_redundant_casts = True
|
|
|
|
warn_return_any = True
|
2020-08-04 00:15:21 +08:00
|
|
|
warn_unreachable = True
|
2019-07-08 15:04:19 +08:00
|
|
|
warn_unused_configs = True
|
2020-07-31 14:46:56 +08:00
|
|
|
no_implicit_reexport = True
|