-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
97 lines (89 loc) · 2.57 KB
/
Copy pathpyproject.toml
File metadata and controls
97 lines (89 loc) · 2.57 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
[build-system]
requires = ["maturin==1.14.1"]
build-backend = "maturin"
[project]
name = "drivecdp"
version = "0.2.0"
description = "Quiet Chrome automation over CDP. Connect to real browsers with a minimal protocol footprint and trusted input."
readme = "README.md"
requires-python = ">=3.10"
license = "MIT"
license-files = ["LICENSE"]
authors = [{ name = "DriveCDP contributors" }]
keywords = [
"browser",
"automation",
"cdp",
"chrome",
"chromium",
"devtools",
"chrome-devtools-protocol",
"remote-browser",
"web-automation",
"scraping",
"rust",
"playwright-alternative",
]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"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",
"Programming Language :: Rust",
"Topic :: Internet :: WWW/HTTP :: Browsers",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Software Development :: Testing",
"Typing :: Typed",
]
[project.optional-dependencies]
bench = [
"playwright>=1.61,<2",
"psutil>=7,<8",
"websockets>=15,<16",
]
dev = [
"maturin>=1.9,<2",
"pytest>=8,<10",
"pytest-asyncio>=0.25,<2",
"ruff>=0.12,<1",
]
[project.urls]
Homepage = "https://github.com/alexander-spring/DriveCDP"
Repository = "https://github.com/alexander-spring/DriveCDP"
Issues = "https://github.com/alexander-spring/DriveCDP/issues"
Changelog = "https://github.com/alexander-spring/DriveCDP/releases"
"Bug Tracker" = "https://github.com/alexander-spring/DriveCDP/issues"
[tool.maturin]
bindings = "pyo3"
module-name = "drivecdp._wire"
python-source = "."
features = ["extension-module"]
exclude = [
{ path = ".github/**", format = "sdist" },
{ path = ".gitattributes", format = "sdist" },
{ path = ".gitignore", format = "sdist" },
{ path = "examples/**", format = "sdist" },
{ path = "tests/**", format = "sdist" },
{ path = "validation/**", format = "sdist" },
{ path = "assets/**", format = "sdist" },
]
[tool.pytest.ini_options]
testpaths = ["tests"]
addopts = "-ra"
asyncio_mode = "auto"
asyncio_default_fixture_loop_scope = "function"
[tool.ruff]
line-length = 88
target-version = "py310"
[tool.ruff.lint]
select = ["E", "F", "I", "UP", "B", "SIM"]
[tool.ruff.lint.per-file-ignores]
"drivecdp/sync.py" = ["E501"]
"tests/*" = ["SIM117"]