[pyproject.toml] Move information from setup.cfg to pyproject.toml
This commit is contained in:
parent
aaa9ca7327
commit
a1d99e4bdd
|
@ -21,11 +21,6 @@ repos:
|
||||||
hooks:
|
hooks:
|
||||||
- id: blacken-docs
|
- id: blacken-docs
|
||||||
additional_dependencies: [black==24.1.1]
|
additional_dependencies: [black==24.1.1]
|
||||||
- repo: https://github.com/asottile/setup-cfg-fmt
|
|
||||||
rev: v2.5.0
|
|
||||||
hooks:
|
|
||||||
- id: setup-cfg-fmt
|
|
||||||
args: ["--max-py-version=3.12", "--include-version-classifiers"]
|
|
||||||
- repo: https://github.com/pre-commit/pygrep-hooks
|
- repo: https://github.com/pre-commit/pygrep-hooks
|
||||||
rev: v1.10.0
|
rev: v1.10.0
|
||||||
hooks:
|
hooks:
|
||||||
|
|
|
@ -1,3 +1,53 @@
|
||||||
|
[project]
|
||||||
|
|
||||||
|
name = "pytest"
|
||||||
|
dynamic = [
|
||||||
|
"version",
|
||||||
|
"optional-dependencies",
|
||||||
|
"dependencies",
|
||||||
|
"scripts",
|
||||||
|
"requires-python"
|
||||||
|
]
|
||||||
|
description = "pytest: simple powerful testing with Python"
|
||||||
|
authors = [
|
||||||
|
{name = "Holger Krekel"},
|
||||||
|
{name = "Bruno Oliveira"},
|
||||||
|
{name = "Ronny Pfannschmidt"},
|
||||||
|
{name = "Floris Bruynooghe"},
|
||||||
|
{name = "Brianna Laugher"},
|
||||||
|
{name = "Florian Bruhin"},
|
||||||
|
{name = "Others (See AUTHORS)"},
|
||||||
|
]
|
||||||
|
readme = "README.rst"
|
||||||
|
license = {text = "MIT"}
|
||||||
|
keywords = ["test", "unittest"]
|
||||||
|
classifiers = [
|
||||||
|
"Development Status :: 6 - Mature",
|
||||||
|
"Intended Audience :: Developers",
|
||||||
|
"License :: OSI Approved :: MIT License",
|
||||||
|
"Operating System :: MacOS",
|
||||||
|
"Operating System :: Microsoft :: Windows",
|
||||||
|
"Operating System :: Unix",
|
||||||
|
"Operating System :: POSIX",
|
||||||
|
"Programming Language :: Python :: 3",
|
||||||
|
"Programming Language :: Python :: 3 :: Only",
|
||||||
|
"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",
|
||||||
|
"Topic :: Software Development :: Libraries",
|
||||||
|
"Topic :: Software Development :: Testing",
|
||||||
|
"Topic :: Utilities",
|
||||||
|
]
|
||||||
|
|
||||||
|
[project.urls]
|
||||||
|
Homepage = "https://docs.pytest.org/en/latest/"
|
||||||
|
Changelog = "https://docs.pytest.org/en/stable/changelog.html"
|
||||||
|
Twitter = "https://twitter.com/pytestdotorg"
|
||||||
|
Source = "https://github.com/pytest-dev/pytest"
|
||||||
|
Tracker = "https://github.com/pytest-dev/pytest/issues"
|
||||||
|
|
||||||
[build-system]
|
[build-system]
|
||||||
requires = [
|
requires = [
|
||||||
"setuptools>=45.0",
|
"setuptools>=45.0",
|
||||||
|
|
31
setup.cfg
31
setup.cfg
|
@ -1,36 +1,5 @@
|
||||||
[metadata]
|
[metadata]
|
||||||
name = pytest
|
|
||||||
description = pytest: simple powerful testing with Python
|
|
||||||
long_description = file: README.rst
|
|
||||||
long_description_content_type = text/x-rst
|
|
||||||
url = https://docs.pytest.org/en/latest/
|
|
||||||
author = Holger Krekel, Bruno Oliveira, Ronny Pfannschmidt, Floris Bruynooghe, Brianna Laugher, Florian Bruhin and others
|
|
||||||
license = MIT
|
|
||||||
license_files = LICENSE
|
|
||||||
platforms = unix, linux, osx, cygwin, win32
|
platforms = unix, linux, osx, cygwin, win32
|
||||||
classifiers =
|
|
||||||
Development Status :: 6 - Mature
|
|
||||||
Intended Audience :: Developers
|
|
||||||
License :: OSI Approved :: MIT License
|
|
||||||
Operating System :: MacOS :: MacOS X
|
|
||||||
Operating System :: Microsoft :: Windows
|
|
||||||
Operating System :: POSIX
|
|
||||||
Programming Language :: Python :: 3
|
|
||||||
Programming Language :: Python :: 3 :: Only
|
|
||||||
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
|
|
||||||
Topic :: Software Development :: Libraries
|
|
||||||
Topic :: Software Development :: Testing
|
|
||||||
Topic :: Utilities
|
|
||||||
keywords = test, unittest
|
|
||||||
project_urls =
|
|
||||||
Changelog=https://docs.pytest.org/en/stable/changelog.html
|
|
||||||
Twitter=https://twitter.com/pytestdotorg
|
|
||||||
Source=https://github.com/pytest-dev/pytest
|
|
||||||
Tracker=https://github.com/pytest-dev/pytest/issues
|
|
||||||
|
|
||||||
[options]
|
[options]
|
||||||
install_requires =
|
install_requires =
|
||||||
|
|
Loading…
Reference in New Issue