-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
37 lines (30 loc) · 971 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
[tool.poetry]
name = "tap-prometheus"
version = "0.0.1"
description = "Singer tap that extracts data from Prometheus using queries provided in config and produces JSON-formatted data following the [Singer spec](https://github.com/singer-io/getting-started/blob/master/docs/SPEC.md)."
authors = ["Signal AI"]
repository = "https://github.com/signal-ai/tap-prometheus"
homepage = "https://github.com/signal-ai/tap-prometheus"
packages = [ { include="tap_prometheus" } ]
[tool.poetry.scripts]
tap-prometheus = "tap_prometheus:main"
[tool.poetry.dependencies]
python = ">=3.8.0,<4.0.0"
singer-python = "5.12.2"
requests = "^2.28.1"
urllib3 = "^1.26.12"
[tool.poetry.group.dev.dependencies]
pytest = "^7.2.0"
pytest-httpserver = "^1.0.6"
pre-commit = "^2.20.0"
[build-system]
requires = ["poetry_core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.pycln]
all = true
quiet = true
[tool.black]
line-length = 100
[tool.isort]
profile = "black"
line_length = 100