-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpyproject.toml
More file actions
36 lines (30 loc) · 1.05 KB
/
pyproject.toml
File metadata and controls
36 lines (30 loc) · 1.05 KB
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
[tool.poetry]
name = "prometrix"
version = "0.2.8"
authors = ["Avi Kotlicky <avi@robusta.dev>"]
readme = "README.md"
packages = [{include = "prometrix"}]
description = "A Python Prometheus client for all Prometheus instances."
[tool.poetry.urls]
"Homepage" = "https://github.com/robusta-dev/prometrix"
"Bug Tracker" = "https://github.com/robusta-dev/prometrix/issues"
[tool.poetry.dependencies]
python = ">=3.9,<4.0"
boto3 = "^1.28.15"
botocore = "^1.31.15"
pydantic = ">=1.8.1,<3"
prometheus-api-client = "^0.5.3"
pillow = "^10.3.0" # added to Pin transitive dependency, not needed directly
fonttools = "^4.43.0" # added to Pin transitive dependency, not needed directly
urllib3 = "^1.26.20" # added to Pin transitive dependency, not needed directly
zipp = "^3.20.1" # added to Pin transitive dependency, not needed directly
idna = "^3.7"
requests = ">2.32.4"
[tool.poetry.group.test]
optional = true
[tool.poetry.group.test.dependencies]
pyyaml = "^6.0.0"
pytimeparse = "^1.1.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"