-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpyproject.toml
More file actions
138 lines (122 loc) · 4.68 KB
/
Copy pathpyproject.toml
File metadata and controls
138 lines (122 loc) · 4.68 KB
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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
# SPDX-FileCopyrightText: 2022 German Aerospace Center (DLR), Helmholtz-Zentrum Dresden-Rossendorf
#
# SPDX-License-Identifier: CC0-1.0
# SPDX-FileContributor: Stephan Druskat <stephan.druskat@dlr.de>
# SPDX-FileContributor: Michael Meinel
# SPDX-FileContributor: David Pape
[project]
name = "hermes"
version = "0.11.0.dev0"
description = "Workflow to publish research software with rich metadata"
license = "Apache-2.0 AND LicenseRef-BSD-Caltech"
authors = [
{ name = "Michael Meinel", email = "michael.meinel@dlr.de" },
{ name = "Stephan Druskat", email = "stephan.druskat@dlr.de" },
{ name = "Oliver Bertuch", email = "o.bertuch@fz-juelich.de" },
{ name = "Oliver Knodel", email = "o.knodel@hzdr.de" },
{ name = "David Pape", email = "d.pape@hzdr.de" },
{ name = "Sophie Kernchen", email = "sophie.kernchen@dlr.de" },
{ name = "Nitai Heeb", email = "n.heeb@fz-juelich.de" },
{ name = "Michael Fritzsche", email = "michael.fritzsche@dlr.de" },
]
maintainers = [
{ name = "Stephan Druskat", email = "stephan.druskat@dlr.de" },
]
readme = "README.md"
repository = "https://github.com/softwarepub/hermes"
keywords = ["software", "publication", "metadata", "automation"]
dependencies = [
"ruamel.yaml>=0.19.1, <0.20.0",
"jsonschema>=3.2.0, <4.0.0",
"pyld>=3.1.0, <4.0.0",
"cffconvert>=2.0.0, <3.0.0",
"pyparsing>=3.3.2, <4.0.0",
"requests>=2.34.2, <3.0.0",
"pydantic>=2.13.4, <3.0.0",
"pydantic-settings>=2.14.2, <3.0.0",
"requests-oauthlib>=2.0.0, <3.0.0",
"pynacl>=1.6.2, <2.0.0",
"rdflib>=7.6.0, <8.0.0",
"schemaorg>=0.1.1, <0.2.0",
"tomlkit>=0.15.1, <0.16.0",
"jinja2>=3.1.6, <4.0.0",
]
requires-python = ">=3.11, <4.0.0"
[project.urls]
homepage = "https://hermes.software-metadata.pub"
documentation = "https://hermes.software-metadata.pub"
repository = "https://github.com/softwarepub/hermes.git"
issues = "https://github.com/softwarepub/hermes/issues"
[project.scripts]
hermes = "hermes.commands.cli:main"
hermes-marketplace = "hermes.commands.marketplace:main"
[project.entry-points."hermes.harvest"]
cff = "hermes.commands.harvest.cff:CffHarvestPlugin"
codemeta = "hermes.commands.harvest.codemeta:CodeMetaHarvestPlugin"
file_exists = "hermes.commands.harvest.file_exists:FileExistsHarvestPlugin"
git = "hermes.commands.harvest.git:GitHarvestPlugin"
toml = "hermes.commands.harvest.toml:TomlHarvestPlugin"
[project.entry-points."hermes.deposit"]
file = "hermes.commands.deposit.file:FileDepositPlugin"
invenio = "hermes.commands.deposit.invenio:InvenioDepositPlugin"
invenio_rdm = "hermes.commands.deposit.invenio_rdm:InvenioRDMDepositPlugin"
rodare = "hermes.commands.deposit.rodare:RodareDepositPlugin"
[project.entry-points."hermes.postprocess"]
config_invenio_record_id = "hermes.commands.postprocess.invenio:config_record_id"
config_invenio_rdm_record_id = "hermes.commands.postprocess.invenio_rdm:config_record_id"
invenio_cff_doi = "hermes.commands.postprocess.invenio:cff_doi"
invenio_rdm_cff_doi = "hermes.commands.postprocess.invenio_rdm:cff_doi"
invenio_codemeta_doi = "hermes.commands.postprocess.invenio:codemeta_doi"
invenio_rdm_codemeta_doi = "hermes.commands.postprocess.invenio_rdm:codemeta_doi"
[project.entry-points."hermes.process"]
codemeta = "hermes.commands.process.standard_merge:CodemetaProcessPlugin"
invenio = "hermes.commands.process.invenio_merge:InvenioProcessPlugin"
[project.entry-points."hermes.curate"]
pass_curate = "hermes.commands.curate.pass_curate:PassCuratePlugin"
[dependency-groups]
dev = [
"pytest>=7.1.1",
"pytest-cov>=3.0.0",
"taskipy>=1.10.3",
"flake8>=5.0.4",
"requests-mock>=1.10.0",
"pytest-httpserver>=1.1.5",
"reuse>=1.1.2",
]
docs = [
"Sphinx>=8.2",
"myst-parser>=4.0",
"sphinx-book-theme>=1.1",
"sphinx-favicon>=0.2",
"sphinxcontrib-contentui>=0.2",
"sphinxcontrib-images>=1.0",
"sphinx-icon>=0.1",
"sphinx-autobuild>=2021.3.14",
"sphinx-autoapi>=3.6",
"sphinxext-opengraph>=0.6",
"sphinxcontrib-mermaid>=0.8",
"sphinx-togglebutton>=0.3.2",
"sphinxcontrib-datatemplates>=0.11",
]
[tool.poetry.group.dev]
optional = true
[tool.poetry.group.docs]
optional = true
[tool.taskipy.tasks]
docs-build = "poetry run sphinx-build -M html docs/source docs/build -W"
docs-clean = "poetry run sphinx-build -M clean docs/source docs/build"
docs-live = "poetry run sphinx-autobuild docs/source docs/build"
flake8 = "poetry run flake8 ./test/ ./src/ --count --select=E9,F63,F7,F82 --statistics"
[tool.pytest.ini_options]
minversion = "6.0"
norecursedirs = "docs/*"
xfail_strict = true
testpaths = [
"test"
]
addopts = "-r s --cov=hermes --cov-report term"
[build-system]
requires = [
"poetry-core>=2.1.3, <3.0.0"
]
build-backend = "poetry.core.masonry.api"