|
| 1 | +[project] |
| 2 | +name = "pytest" |
| 3 | +dynamic = ["version"] |
| 4 | +description = "pytest: simple powerful testing with Python" |
| 5 | +authors = [ |
| 6 | + {name = "Holger Krekel"}, |
| 7 | + {name = "Bruno Oliveira"}, |
| 8 | + {name = "Ronny Pfannschmidt"}, |
| 9 | + {name = "Floris Bruynooghe"}, |
| 10 | + {name = "Brianna Laugher"}, |
| 11 | + {name = "Florian Bruhin"}, |
| 12 | + {name = "Others (See AUTHORS)"}, |
| 13 | +] |
| 14 | +readme = "README.rst" |
| 15 | +license = {text = "MIT"} |
| 16 | +keywords = ["test", "unittest"] |
| 17 | +classifiers = [ |
| 18 | + "Development Status :: 6 - Mature", |
| 19 | + "Intended Audience :: Developers", |
| 20 | + "License :: OSI Approved :: MIT License", |
| 21 | + "Operating System :: MacOS", |
| 22 | + "Operating System :: Microsoft :: Windows", |
| 23 | + "Operating System :: Unix", |
| 24 | + "Operating System :: POSIX", |
| 25 | + "Programming Language :: Python :: 3", |
| 26 | + "Programming Language :: Python :: 3 :: Only", |
| 27 | + "Programming Language :: Python :: 3.8", |
| 28 | + "Programming Language :: Python :: 3.9", |
| 29 | + "Programming Language :: Python :: 3.10", |
| 30 | + "Programming Language :: Python :: 3.11", |
| 31 | + "Programming Language :: Python :: 3.12", |
| 32 | + "Topic :: Software Development :: Libraries", |
| 33 | + "Topic :: Software Development :: Testing", |
| 34 | + "Topic :: Utilities", |
| 35 | +] |
| 36 | + |
| 37 | +dependencies = [ |
| 38 | + "colorama;sys_platform=='win32'", |
| 39 | + "exceptiongroup>=1.0.0rc8;python_version<'3.11'", |
| 40 | + "iniconfig", |
| 41 | + "packaging", |
| 42 | + "pluggy>=1.4.0,<2.0", |
| 43 | + "tomli>=1.0.0;python_version<'3.11'", |
| 44 | +] |
| 45 | +requires-python = ">=3.8" |
| 46 | + |
| 47 | +[project.optional-dependencies] |
| 48 | +testing = [ |
| 49 | + "argcomplete", |
| 50 | + "attrs>=19.2.0", |
| 51 | + "hypothesis>=3.56", |
| 52 | + "mock", |
| 53 | + "pygments>=2.7.2", |
| 54 | + "requests", |
| 55 | + "setuptools", |
| 56 | + "xmlschema", |
| 57 | +] |
| 58 | + |
| 59 | +[project.scripts] |
| 60 | +"py.test" = "pytest:console_main" |
| 61 | +pytest = "pytest:console_main" |
| 62 | + |
| 63 | +[project.urls] |
| 64 | +Homepage = "https://docs.pytest.org/en/latest/" |
| 65 | +Changelog = "https://docs.pytest.org/en/stable/changelog.html" |
| 66 | +Twitter = "https://twitter.com/pytestdotorg" |
| 67 | +Source = "https://github.com/pytest-dev/pytest" |
| 68 | +Tracker = "https://github.com/pytest-dev/pytest/issues" |
| 69 | + |
1 | 70 | [build-system]
|
2 | 71 | requires = [
|
3 | 72 | "setuptools>=45.0",
|
4 | 73 | "setuptools-scm[toml]>=6.2.3",
|
5 | 74 | ]
|
6 | 75 | build-backend = "setuptools.build_meta"
|
7 | 76 |
|
| 77 | +[tool.setuptools.package-data] |
| 78 | +"_pytest" = ["py.typed"] |
| 79 | +"pytest" = ["py.typed"] |
| 80 | + |
8 | 81 | [tool.setuptools_scm]
|
9 | 82 | write_to = "src/_pytest/_version.py"
|
10 | 83 |
|
|
0 commit comments