-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
65 lines (56 loc) · 1.56 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
[build-system]
requires = ["setuptools>=42", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "drydock"
dynamic = ["version"]
description = "A repository to manage our grafana custom dashboards"
readme = "README.md"
requires-python = ">=3.8"
license = { text = "AGPLv3" }
authors = [
{ name = "eduNEXT" }
]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: GNU Affero General Public License v3",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
[project.optional-dependencies]
dev = [
"python-semantic-release",
]
[project.urls]
Homepage = "https://github.com/edunext/edunext-grafana-dashboards"
Code = "https://github.com/edunext/edunext-grafana-dashboards"
"Issue tracker" = "https://github.com/edunext/edunext-grafana-dashboards/issues"
[tool.setuptools.packages.find]
where = ["."]
exclude = ["tests*"]
[tool.wheel]
universal = true
[tool.semantic_release]
commit_message = "chore(release): preparing {version}"
[tool.semantic_release.branches.main]
match = "(main|master)"
[tool.semantic_release.changelog.environment]
keep_trailing_newline = true
[tool.semantic_release.changelog]
exclude_commit_patterns = [
"docs:",
"build:",
"style:",
"chore:",
"test:",
"revert:",
"perf:",
"refactor:",
"ci:",
]