-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
47 lines (40 loc) · 1.33 KB
/
pyproject.toml
File metadata and controls
47 lines (40 loc) · 1.33 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
37
38
39
40
41
42
43
44
45
46
47
# pyproject.toml
[build-system]
requires = ["setuptools>=61.0.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "hanazeder"
version = "1.3.0"
description = "Library and utils to read sensor data from Hanazeder FP heating pumps"
readme = "README.md"
authors = [{ name = "Kevin Read", email = "me@kevin-read.com" }]
license = { file = "LICENSE.txt" }
classifiers = [
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Development Status :: 4 - Beta",
"Environment :: Console"
]
keywords = ["heating", "smart home", "hanazeder", "pump"]
dependencies = [
"crccheck",
"pyserial-asyncio>=0.6",
]
requires-python = ">=3.6"
[project.optional-dependencies]
dev = ["pytest", "bumpver", "build", "twine", "pytest-mock", "pytest-asyncio"]
[project.urls]
Homepage = "https://github.com/unverbraucht/hanazeder_python"
[project.scripts]
hanazeder_read = "hanazeder.read:main"
[tool.bumpver]
current_version = "1.3.0"
version_pattern = "MAJOR.MINOR.PATCH"
commit_message = "Bump version {old_version} -> {new_version}"
commit = true
tag = true
push = false
[tool.bumpver.file_patterns]
"pyproject.toml" = ['current_version = "{version}"', 'version = "{version}"']
"hanazeder/__init__.py" = ['version = "{version}"']