-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
36 lines (30 loc) · 1006 Bytes
/
pyproject.toml
File metadata and controls
36 lines (30 loc) · 1006 Bytes
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 = "hanazeder_server"
version = "1.1.1"
description = "A server that reads energy and sensor data from a Hanazeder FP pump control system and publishes it to MQTT. Automatically creates Home Assistant topics."
authors = ["Kevin Read <me@kevin-read.com>"]
license = "Apache Software License"
[tool.poetry.dependencies]
python = "^3.7"
asyncio-mqtt = "^0.12.1"
hanazeder = "1.3.0"
quart = "^0.18.0"
[tool.poetry.dev-dependencies]
flake8 = "^4.0.1"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[project.urls]
Homepage = "https://github.com/unverbraucht/hanazeder_server"
[project.scripts]
hanazeder_server = "hanazeder_server.mqtt:main"
[tool.semantic_release]
version_variable = [
"hanazeder_server/__init__.py:__version__",
"pyproject.toml:version"
]
branch = "main"
upload_to_pypi = false
upload_to_release = true
build_command = "pip install pipenv && python3 -m build"
# commit_parser = "semantic_release.history.scipy_parser"