-
Notifications
You must be signed in to change notification settings - Fork 27
Expand file tree
/
Copy pathpyproject.toml
More file actions
38 lines (34 loc) · 1.05 KB
/
pyproject.toml
File metadata and controls
38 lines (34 loc) · 1.05 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
[tool.poetry]
name = "chrome-devtools-protocol"
packages = [{include = "cdp"}]
version = "0.5.0"
description = "Python type wrappers for Chrome DevTools Protocol (CDP)"
authors = ["Mark E. Haase <mehaase@gmail.com>", "Brian Mackintosh <bcmackintosh@gmail.com>"]
license = "MIT"
readme = "README.md"
homepage = "https://github.com/hyperiongray/python-chrome-devtools-protocol"
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Topic :: Internet"
]
[tool.poetry.dependencies]
python = ">=3.8,<4.0"
deprecated = "^1.2.9"
websockets = {version = ">=10,<14", optional = true}
[tool.poetry.extras]
io = ["websockets"]
[tool.poetry.group.dev.dependencies]
inflection = "^0.5.0"
mypy = "^1.0"
pytest = "^7.0"
pytest-asyncio = ">=0.21,<0.24"
sphinx = "^5.0"
sphinx-autodoc-typehints = "^1.21"
sphinx-rtd-theme = ">=1.2,<3.0"
standard-imghdr = {version = "^3.13.0", python = ">=3.13,<4.0"}
websockets = ">=10,<14"
bandit = ">=1.7.5,<1.8"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"