-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
40 lines (31 loc) · 905 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
40
[tool.poetry]
name = "sml-exporter"
version = "0.1.5"
description = "Smartmeter Message Language Prometheus Exporter"
license = "MIT"
authors = ["Martin Weinelt <[email protected]>"]
readme = "README.md"
repository = "https://github.com/mweinelt/sml-exporter"
keywords = ["smartmeter", "prometheus", "exporter"]
classifiers = [
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
]
[tool.poetry.scripts]
sml-exporter = "sml_exporter.__main__:main"
[tool.poetry.dependencies]
python = "^3.8"
pysml = "0.0.11"
prometheus-client = "^0"
click = "^8"
[tool.poetry.dev-dependencies]
black = "*"
isort = "*"
mypy = "*"
pytest = "*"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"