diff --git a/pyproject.toml b/pyproject.toml index ec0809f..e696744 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,18 +1,30 @@ [project] -name = "abratest" +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.11" dependencies = [ "pytest == 7.4.3", + "playwright >= 1.40", ] -[project.optional-dependencies] -dev = [ - "ruff >= 0.1.7", -] +[project.scripts] +pytest11 = "pytest_abra.pytest_abra" + +[project.classifiers] +Programming Language = "Python :: 3" +Programming Language = "Python :: 3.11" +Programming Language = "Python :: 3.12" +Framework = "Pytest" [tool.setuptools] -package-dir = {"" = "abratest"} +package-dir = {"" = "pytest_abra"} + +[build-system] +requires = ["setuptools>=42.0", "wheel", "pip >= 21.1"] +build-backend = "setuptools.build_meta" [tool.ruff] line-length = 120