-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
42 lines (37 loc) · 1.2 KB
/
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
41
42
# see https://peps.python.org/pep-0621/
[project]
name = "toutsurmoneau"
version = "0.0.9"
description = "Home Assistant integration for https://www.toutsurmoneau.fr/ and other water providers in france."
readme = "README.md"
requires-python = ">=3.7"
license = { file = "LICENSE" }
authors = [{ name = "Laurent MARTIN", email = "[email protected]" }]
maintainers = [
{ name = "Laurent MARTIN", email = "[email protected]" },
]
keywords = ["suez", "toutsurmoneau"]
classifiers = [
"Development Status :: 4 - Beta",
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
dependencies = ['toutsurmoneau']
[tool.bumpver]
current_version = "0.0.11"
version_pattern = "MAJOR.MINOR.PATCH[PYTAGNUM]"
commit_message = "bump version {old_version} -> {new_version}"
commit = true
tag = true
push = true
[tool.bumpver.file_patterns]
"README.md" = ["{version}", "{pep440_version}"]
"custom_components/portail_eau_fr/manifest.json" = [ "\"version\": \"{version}\"" ]
"custom_components/portail_eau_fr/const.py" = [ "VERSION = '{version}'" ]
[tool.autopep8]
max-line-length = 120
indent-size = 4
in-place = true
recursive = true
aggressive = 3