-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
53 lines (44 loc) · 1.03 KB
/
pyproject.toml
File metadata and controls
53 lines (44 loc) · 1.03 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
[project]
name = "cdpify"
version = "0.2.5"
description = "A Python client for the Chrome DevTools Protocol (CDP) optimized for DX."
readme = "README.md"
requires-python = ">=3.13"
dependencies = [
"httpx>=0.28.1",
"pre-commit>=4.5.1",
"pydantic>=2.12.5",
"websockets>=15.0.1",
]
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
include = ["cdpify*"]
exclude = ["specs*", "tests*"]
[dependency-groups]
dev = [
"pytest>=9.0.2",
"pytest-asyncio>=1.3.0",
"ruff>=0.14.10",
]
[tool.ruff]
line-length = 88
[tool.ruff.lint]
select = [
"E", # pycodestyle errors
"W", # pycodestyle warnings
"F", # pyflakes
"I", # isort
]
ignore = [
"D203", # no blank line before class docstring
"D212", # multi-line docstring summary first line
"D213", # multi-line docstring summary second line
]
[tool.ruff.format]
quote-style = "double"
indent-style = "space"
line-ending = "auto"
[tool.ruff.lint.pydocstyle]
convention = "numpy"