17 lines
408 B
TOML
17 lines
408 B
TOML
[tool.poetry]
|
|||
|
|
name = "package"
|
||
|
|
version = "0.1.0"
|
||
|
|
description = "OpenSearch Python client benchmarks."
|
||
|
|
authors = ["Daniel Doubrovkine <[email protected]>"]
|
||
|
|
license = "Apache 2.0"
|
||
|
|
readme = "README.md"
|
||
|
|
|
||
|
|
[tool.poetry.dependencies]
|
||
|
|
python = "^3.7"
|
||
|
|
opensearch-py = { path = "..", develop=true, extras=["async"] }
|
||
|
|
richbench = "*"
|
||
|
|
|
||
|
|
[build-system]
|
||
|
|
requires = ["poetry-core"]
|
||
|
|
build-backend = "poetry.core.masonry.api"
|