coady/pytest-parametrized

View on GitHub
pyproject.toml

Summary

Maintainability
Test Coverage
[build-system]
requires = ["setuptools>=61", "wheel"]
build-backend = "setuptools.build_meta"

[project]
name = "pytest-parametrized"
dynamic = ["version"]
description = "Pytest decorator for parametrizing tests with default iterables."
readme = "README.md"
requires-python = ">=3.9"
license = {file = "LICENSE.txt"}
authors = [{name = "Aric Coady", email = "aric.coady@gmail.com"}]
keywords = ["pytest", "parametrize", "parameterize", "fixture"]
classifiers = [
    "Development Status :: 5 - Production/Stable",
    "Framework :: Pytest",
    "Intended Audience :: Developers",
    "License :: OSI Approved :: Apache Software License",
    "Operating System :: OS Independent",
    "Programming Language :: Python :: 3",
    "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",
    "Topic :: Software Development :: Testing",
]
dependencies = ["pytest"]

[project.urls]
Homepage = "https://github.com/coady/pytest-parametrized"
Changelog = "https://github.com/coady/pytest-parametrized/blob/main/CHANGELOG.md"
Issues = "https://github.com/coady/pytest-parametrized/issues"

[tool.setuptools.dynamic]
version = {attr = "parametrized.__version__"}

[tool.ruff]
line-length = 100

[tool.ruff.format]
quote-style = "single"

[tool.coverage.run]
source = ["parametrized"]
branch = true