-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpyproject.toml
39 lines (31 loc) · 889 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
38
39
[tool.poetry]
name = "vicare-exporter"
# dummy version
version = "0.0.0"
description = "Prometheus exporter for ViCare metrics"
authors = ["Sebastian Eckweiler <[email protected]>"]
[tool.poetry.dependencies]
python = ">=3.9,<4"
prometheus-client = "^0.19.0"
pyvicare = "^2.30.0"
python-dotenv = "^1.0.0"
requests = "^2.31.0"
[tool.poetry.dev-dependencies]
[tool.poetry.group.dev.dependencies]
black = {version = "^22.10.0", allow-prereleases = true}
pre-commit = "^2.20.0"
pytest = "^8.1.1"
[tool.poetry-dynamic-versioning]
enable = true
[build-system]
requires = ["poetry-core>=1.0.0", "poetry-dynamic-versioning>=1.0.0,<2.0.0"]
build-backend = "poetry_dynamic_versioning.backend"
[tool.isort]
profile = "black"
line_length = 1000
[tool.flake8]
max-line-length = 1000
ignore = "E203"
[tool.pytest.ini_options]
addopts = "--junit-xml=test-results.xml"
testpaths = ["tests"]