-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathpyproject.toml
More file actions
33 lines (30 loc) · 895 Bytes
/
pyproject.toml
File metadata and controls
33 lines (30 loc) · 895 Bytes
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
[tool.poetry]
name = "trio-chrome-devtools-protocol"
packages = [{include = "trio_cdp"}]
version = "0.7.0"
description = "Trio driver 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.7"
chrome-devtools-protocol = "^0.4.0"
trio = "^0.13.0"
trio_websocket = "^0.8.0"
[tool.poetry.dev-dependencies]
mypy = "^0.770"
pytest = "^5.4.1"
pytest-cov = "^2.8.1"
pytest-trio = "^0.5.2"
sphinx = "^3.0.1"
sphinx-rtd-theme = "^0.4.3"
sphinx-autodoc-typehints = "^1.10.3"
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"