e2e_tests/pyproject.toml
2023-12-06 13:07:39 +01:00

37 lines
No EOL
877 B
TOML

[project]
name = "pytest-abra"
description = "A pytest plugin to test instances of abra recipes"
authors = [{name = "Local-IT e.V."}]
readme = "README.md"
version = "0.2.0"
requires-python = ">=3.10"
classifiers = [
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Framework :: Pytest",
]
dependencies = [
"pytest == 7.4.3",
"playwright >= 1.40",
]
[project.scripts]
pytest11 = "pytest_abra:pytest_abra"
[tool.setuptools]
package-dir = {"" = "pytest_abra"}
[build-system]
requires = ["setuptools>=42.0", "wheel", "pip >= 21.1"]
build-backend = "setuptools.build_meta"
[tool.ruff]
line-length = 120
target-version = "py311"
[tool.pytest.ini_options]
python_functions = "test_* setup_*"
norecursedirs = ".* previous-work recipes"
testpaths = "tests"