-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
41 lines (36 loc) · 1015 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
39
40
41
[tool.poetry]
name = "crossbench"
version = "0.0.1"
authors = [ "Camillo Bruni <[email protected]>" ]
description = "A cross-browser, cross-system benchmark runner"
readme = "README.md"
license = "BSD-3-Clause"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
]
[tool.poetry.urls]
"Homepage" = "https://chromium.googlesource.com/crossbench"
"Bug Tracker" = "https://bugs.chromium.org/p/chromium/issues/list?q=crossbench"
[tool.poetry.dependencies]
python = ">=3.8,<3.11"
hjson = "^3.1.0"
psutil = "^5.9.1"
selenium = "4.1.0"
tabulate = "^0.8.10"
websockets = "^11.0.3"
[tool.poetry.scripts]
crossbench = 'scripts:crossbench'
cb = 'scripts:crossbench'
[tool.poetry.group.dev.dependencies]
pyfakefs = "^5.2.2"
isort = "^5.10.1"
pytype = "^2023.4.18"
pytest-cov = "^4.0.0"
debugpy = "^1.6.3"
mypy = "^1.2"
pylint = "^2.7"
[build-system]
requires = ["poetry_core>=1.1.5"]
build-backend = "poetry.core.masonry.api"