fix syntax

This commit is contained in:
Daniel 2023-12-06 13:07:39 +01:00
parent 95c7a19edd
commit b76f031f1e

View file

@ -4,20 +4,21 @@ description = "A pytest plugin to test instances of abra recipes"
authors = [{name = "Local-IT e.V."}] authors = [{name = "Local-IT e.V."}]
readme = "README.md" readme = "README.md"
version = "0.2.0" version = "0.2.0"
requires-python = "~=3.11" 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 = [ dependencies = [
"pytest == 7.4.3", "pytest == 7.4.3",
"playwright >= 1.40", "playwright >= 1.40",
] ]
[project.scripts] [project.scripts]
pytest11 = "pytest_abra.pytest_abra" 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] [tool.setuptools]
package-dir = {"" = "pytest_abra"} package-dir = {"" = "pytest_abra"}