|
| 1 | +[build-system] |
| 2 | +requires = [ |
| 3 | + "setuptools >= 64.0.0", # required by pyproject+setuptools_scm integration |
| 4 | + "setuptools_scm[toml] >= 7.0.5", # required for "no-local-version" scheme |
| 5 | + |
| 6 | +] |
| 7 | +build-backend = "setuptools.build_meta" |
| 8 | + |
| 9 | +[project] |
| 10 | +# https://peps.python.org/pep-0621/#readme |
| 11 | +requires-python = ">=3.7" |
| 12 | +version = "0.1.8" |
| 13 | +name = "pytest-github-actions-annotate-failures" |
| 14 | +description = "pytest plugin to annotate failed tests with a workflow command for GitHub Actions" |
| 15 | +readme = "README.md" |
| 16 | +authors = [{ "name" = "utgwkk", "email" = "[email protected]" }] |
| 17 | +maintainers = [{ "name" = "utgwkk", "email" = "[email protected]" }] |
| 18 | +license = { text = "MIT" } |
| 19 | +classifiers = [ |
| 20 | + "Development Status :: 5 - Production/Stable", |
| 21 | + "Environment :: Console", |
| 22 | + "Intended Audience :: Developers", |
| 23 | + "Intended Audience :: Information Technology", |
| 24 | + "Intended Audience :: System Administrators", |
| 25 | + "License :: OSI Approved :: MIT License", |
| 26 | + "Framework :: Pytest", |
| 27 | + "Programming Language :: Python :: 3", |
| 28 | + "Programming Language :: Python :: 3.7", |
| 29 | + "Programming Language :: Python :: 3.8", |
| 30 | + "Programming Language :: Python :: 3.9", |
| 31 | + "Programming Language :: Python :: 3.10", |
| 32 | + "Programming Language :: Python :: 3.11", |
| 33 | + "Programming Language :: Python :: 3 :: Only", |
| 34 | + "Programming Language :: Python", |
| 35 | + "Topic :: System :: Systems Administration", |
| 36 | + "Topic :: Software Development :: Quality Assurance", |
| 37 | + "Topic :: Software Development :: Testing", |
| 38 | + "Topic :: Utilities", |
| 39 | +] |
| 40 | +keywords = ["ansible", "testing", "molecule", "plugin"] |
| 41 | +dependencies = [ |
| 42 | + "pytest>=4.0.0" |
| 43 | +] |
| 44 | + |
| 45 | +[project.urls] |
| 46 | +homepage = "https://github.com/pytest-dev/pytest-github-actions-annotate-failures" |
| 47 | +repository = "https://github.com/pytest-dev/pytest-github-actions-annotate-failures" |
| 48 | +changelog = "https://github.com/pytest-dev/pytest-github-actions-annotate-failures/releases" |
| 49 | + |
| 50 | +[project.entry-points.pytest11] |
| 51 | +pytest_github_actions_annotate_failures = "pytest_github_actions_annotate_failures.plugin" |
0 commit comments