-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
37 lines (34 loc) · 982 Bytes
/
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
[project]
name = "gh-workflows"
dynamic = ["version"]
description = "Github workflows that can be shared across all HOT projects."
authors = [
{name = "Sam Woodcock", email = "[email protected]"},
]
dependencies = []
requires-python = ">=3.10"
readme = "README.md"
license = {file = "LICENSE.md"}
keywords = ["hot", "hotosm", "gh-workflows", "workflows"]
[project.urls]
homepage = "https://hotosm.github.io/gh-workflows"
documentation = "https://hotosm.github.io/gh-workflows"
repository = "https://github.com/hotosm/gh-workflows"
[project.optional-dependencies]
docs = [
"mkdocs==1.6.1",
"mkdocs-material==9.5.42",
"mkdocstrings-python==1.12.2",
"mkdocs-exclude==1.0.2",
"mkdocs-git-revision-date-localized-plugin>=1.3.0",
"mdx-truly-sane-lists>=1.3",
"mkdocs-drawio>=1.7.0",
]
[tool.commitizen]
name = "cz_conventional_commits"
version = "2.0.9"
version_files = [
"pyproject.toml:version",
]
update_changelog_on_bump = true
[tool.pdm]