-
Notifications
You must be signed in to change notification settings - Fork 88
Expand file tree
/
Copy pathpyproject.toml
More file actions
43 lines (39 loc) · 1.22 KB
/
pyproject.toml
File metadata and controls
43 lines (39 loc) · 1.22 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
[build-system]
requires = ["setuptools==75.4.0", "setuptools_scm==8.1.0"]
build-backend = "setuptools.build_meta"
[project]
name = "pytest-playwright-asyncio"
description = "A pytest wrapper with async fixtures for Playwright to automate web browsers"
readme = "README.md"
authors = [
{name = "Microsoft"}
]
license = {file = "LICENSE"}
requires-python = ">=3.10"
classifiers = [
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Framework :: Pytest",
]
dynamic = ["version"]
dependencies = [
"playwright>=1.26",
"pytest>=7.4.4,<10.0.0",
"pytest-base-url>=1.0.0,<3.0.0",
"python-slugify>=6.0.0,<9.0.0",
"pytest-asyncio>=0.26.0",
]
[project.urls]
homepage = "https://github.com/microsoft/playwright-pytest"
[project.entry-points.pytest11]
playwright-asyncio = "pytest_playwright_asyncio.pytest_playwright"
[tool.setuptools]
packages = ["pytest_playwright_asyncio"]
[tool.setuptools_scm]
root = ".."