-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
37 lines (33 loc) · 1.08 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
[tool.poetry]
name = "openmldb-exporter"
version = "0.9.0"
description = "prometheus exporter for OpenMLDB"
authors = ["aceforeverd <[email protected]>"]
license = "Apache-2.0"
readme = "README.md"
homepage = "https://openmldb.ai"
repository = "https://github.com/4paradigm/openmldb-exporter"
documentation = "https://openmldb.ai/docs/zh/main/maintain/monitoring.html"
keywords = ["openmldb", "prometheus"]
classifiers = [
"Programming Language :: Python :: 3.8",
"Topic :: System :: Monitoring",
"Topic :: Database",
]
[tool.poetry.scripts]
openmldb-exporter = "openmldb_exporter.exporter:main"
[tool.poetry.dependencies]
python = "^3.8"
prometheus-client = "^0.19.0"
openmldb = "^0.8.4"
# uncomment below to use openmldb sdk built from source
# set develop = true so changes in python will take effect immediately
# openmldb = { path = "../python/", develop = true }
Twisted = ">=22.2,<24.0"
[tool.poetry.group.dev.dependencies]
pytest = ">=7.3.1,<9.0.0"
requests = "^2.29.0"
pylint = "^3.0.3"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"