forked from AtuboDad/playwright_stealth
-
Notifications
You must be signed in to change notification settings - Fork 7
/
pyproject.toml
38 lines (33 loc) · 875 Bytes
/
pyproject.toml
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
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "playwright-stealth"
dynamic = ["version"]
description = "playwright stealth"
readme = "README.md"
license = { text = "MIT" }
requires-python = ">=3.8"
authors = [
{ name = "AtuboDad", email = "[email protected]" },
]
classifiers = [
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
]
dependencies = ["playwright"]
[project.optional-dependencies]
test = [
"pytest", "pytest-asyncio",
]
# psf/black runner will extract this, no other use
lint = ["black~=24.8.0"]
[project.urls]
Homepage = "https://github.com/Mattwmaster58/playwright_stealth"
[tool.pytest.ini_options]
asyncio_mode="auto"
asyncio_default_fixture_loop_scope="function"
log_cli=true
[tool.black]
line-length=120