-
Notifications
You must be signed in to change notification settings - Fork 11
/
pyproject.toml
66 lines (61 loc) · 2.24 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
[tool.poetry]
name = "redis-benchmarks-specification"
version = "0.1.247"
description = "The Redis benchmarks specification describes the cross-language/tools requirements and expectations to foster performance and observability standards around redis related technologies. Members from both industry and academia, including organizations and individuals are encouraged to contribute."
authors = ["filipecosta90 <[email protected]>","Redis Performance Group <[email protected]>"]
readme = "Readme.md"
[tool.poetry.dependencies]
python = "^3.10.0"
Flask = "^2.0.3"
flask-restx = "^0.5.0"
redis = "^4.2.0"
marshmallow = "^3.12.2"
argparse = "^1.4.0"
Flask-HTTPAuth = "^4.4.0"
PyYAML = "^6.0"
docker = "^7.1.0"
redisbench-admin = "^0.11.1"
psutil = "^5.9.4"
PyGithub = "^1.55"
GitPython = "^3.1.20"
semver = "^2.13.0"
node-semver = "^0.8.1"
typed-ast = "^1.5.0"
oyaml = "^1.0"
pandas = "^2.1.2"
numpy = "^2.0.0"
jsonpath-ng = "^1.6.1"
[tool.poetry.dev-dependencies]
click = "8.1.7"
black = "24.4.2"
flake8 = "7.1.0"
flynt = "~0.69.0"
isort = "5.10.1"
mock = "4.0.3"
packaging = ">=20.4"
pytest = "8.2.2"
pytest-timeout = "2.3.1"
pytest-asyncio = ">=0.23.7"
tox = ">=4.16.0"
tox-docker = ">=5.0.0"
invoke = "2.2.0"
pytest-cov = ">=5.0.0"
vulture = ">=2.3.0"
ujson = ">=4.2.0"
wheel = ">=0.43.0"
docker = ">=7.1.0"
[tool.poetry.group.dev.dependencies]
#tox-poetry-installer = {extras = ["poetry"], version = "^0.10.3"}
docker = "^7.1.0"
[build-system]
requires = ["poetry_core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.scripts]
redis-benchmarks-compare = "redis_benchmarks_specification.__compare__.compare:main"
redis-benchmarks-spec-api = "redis_benchmarks_specification.__api__.api:main"
redis-benchmarks-spec-builder = "redis_benchmarks_specification.__builder__.builder:main"
redis-benchmarks-spec-client-runner = "redis_benchmarks_specification.__runner__.runner:main"
redis-benchmarks-spec-sc-coordinator = "redis_benchmarks_specification.__self_contained_coordinator__.self_contained_coordinator:main"
redis-benchmarks-spec-cli = "redis_benchmarks_specification.__cli__.cli:main"
redis-benchmarks-spec-watchdog = "redis_benchmarks_specification.__watchdog__.watchdog:main"
redis-benchmarks-spec = "redis_benchmarks_specification.__spec__.cli:main"