-
Notifications
You must be signed in to change notification settings - Fork 6
/
pyproject.toml
51 lines (46 loc) · 1.56 KB
/
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
42
43
44
45
46
47
48
49
50
51
[tool.poetry]
name = "reprobench"
version = "0.11.1"
readme = "README.md"
description = "Reproducible Benchmark for Everyone"
authors = ["Rakha Kanz Kautsar <rkkautsar@gmail.com>"]
license = "MIT"
[tool.poetry.dependencies]
python = ">=3.6"
strictyaml = "^1.0"
loguru = "^0.2.5"
click = "^7.0"
tqdm = "^4.31"
pathspec = "^0.5.9"
requests = "^2.21"
numpy = "^1.16"
psmon = { version = "^1.1.0", optional = true }
psutil = { version = "^5.6", optional = true }
py-cpuinfo = { version = ">=4,<6", optional = true }
msgpack-python = { version = "^0.5.6", optional = true }
pyzmq = { version = "^18.0", optional = true }
gevent = { version = "^1.4", optional = true }
peewee = { version = "^3.9", optional = true }
apsw = { version = "^3.9", optional = true }
configspace = { version = "^0.4.10", optional = true }
pandas = { version = "^0.24.2", optional = true }
papermill = { version = ">=0.19.1,<1.1.0", optional = true }
retrying = "^1.3"
sshtunnel = "^0.1.5"
[tool.poetry.extras]
sysinfo = ["psutil", "py-cpuinfo"]
server = ["pyzmq", "gevent", "peewee", "apsw", "msgpack-python"]
psmon = ["psmon"]
client = ["pyzmq", "msgpack-python"]
pcs = ["configspace"]
analytics = ["peewee", "apsw", "pandas", "papermill"]
all = ["psmon", "psutil", "py-cpuinfo", "msgpack-python", "pyzmq", "gevent", "peewee", "apsw", "configspace", "pandas", "papermill"]
[tool.poetry.dev-dependencies]
black = "=19.3b0"
sphinx = "^2.0"
sphinx_rtd_theme = "^0.4.3"
[tool.poetry.scripts]
reprobench = "reprobench.console.main:cli"
[build-system]
requires = ["setuptools", "poetry>=0.12"]
build-backend = "poetry.masonry.api"