forked from gunkutzeybek/hikaxpro
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
44 lines (38 loc) · 1.07 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
43
[build-system]
requires = ["setuptools>=40.8.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "hikaxpro"
version = "2.3.0"
description = "Hikvision AX Pro alarm kit ISAPI integration for home assistant alarm panel"
readme = "README.md"
authors = [
{ name = "Günkut Zeybek", email = "gunkut.zeybek@gmail.com" },
{ name = "Petr Leo Compel", email = "petrleocompel@gmail.com" }
]
license = { file = "LICENSE" }
classifiers = [
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
]
keywords = ["hikvision", "ISAPI", "homeassistant"]
dependencies = [
"requests"
]
requires-python = ">=3.9"
[project.urls]
repository = "https://github.com/petrleocompel/hikaxpro/"
[project.optional-dependencies]
dev = ["pytest", "requests_mock"]
[tool.bumpver]
current_version = "2.3.0"
version_pattern = "MAJOR.MINOR.PATCH"
commit_message = "chore: release version {new_version}"
commit = true
tag = true
push = false
[tool.bumpver.file_patterns]
"pyproject.toml" = [
'version = "{version}"',
]