-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
63 lines (53 loc) · 1.6 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
# SPDX-FileCopyrightText: 2024 German Aerospace Center (DLR)
#
# SPDX-License-Identifier: CC0-1.0
# SPDX-FileContributor: Michael Meinel
[tool.poetry]
# Reference at https://python-poetry.org/docs/pyproject/
name = "hermes-plugin-git"
version = "0.8.0"
license = "Apache-2.0"
authors = [
"Michael Meinel <[email protected]>",
]
description = "HERMES plugin for git."
repository = "https://github.com/softwarepub/hermes-plugin-git"
keywords = ["publishing", "metadata", "automation"]
# Stating our package explicitely here to enable
# a) including contrib packages in the future and
# b) rename the package for development snapshot releases to TestPyPI
packages = [
{ include = "hermes_plugin_git", from = "src" }
]
[tool.poetry.dependencies]
python = "^3.10"
hermes = "^0.8.0"
[tool.poetry.group.dev.dependencies]
pytest = "^7.1.1"
pytest-cov = "^3.0.0"
taskipy = "^1.10.3"
flake8 = "^5.0.4"
reuse = "^1.1.2"
# Packages for developers for creating documentation
[tool.poetry.group.docs]
optional = true
[tool.poetry.group.docs.dependencies]
Sphinx = "^6.2.1"
# Sphinx - Additional modules
myst-parser = "^2.0.0"
sphinx-book-theme = "^1.0.1"
sphinx-favicon = "^0.2"
sphinxcontrib-contentui = "^0.2.5"
sphinxcontrib-images = "^0.9.4"
sphinx-icon = "^0.1.2"
sphinx-autobuild = "^2021.3.14"
sphinx-autoapi = "^3.0.0"
sphinxemoji = "^0.2.0"
sphinxext-opengraph = "^0.6.3"
sphinxcontrib-mermaid="^0.8.1"
sphinx-togglebutton="^0.3.2"
[tool.poetry.plugins."hermes.harvest"]
git = "hermes_plugin_git.harvest:GitHarvestPlugin"
[build-system]
requires = ["poetry-core>=1.2.0"]
build-backend = "poetry.core.masonry.api"