-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
45 lines (37 loc) · 1.32 KB
/
pyproject.toml
File metadata and controls
45 lines (37 loc) · 1.32 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
# SPDX-License-Identifier: CC0-1.0
#
# SPDX-FileCopyrightText: 2024 German Aerospace Center (DLR)
#
# SPDX-FileContributor: Michael Meinel
# SPDX-FileContributor: Michael Fritzsche
[build-system]
requires = [ "setuptools >= 70.1.1",]
build-backend = "setuptools.build_meta"
[project]
name = "hermes-plugin-python"
version = "0.1.8"
readme = "README.md"
description = "HERMES plugin for .toml files"
keywords = [ "publishing", "metadata", "automation",]
requires-python = ">= 3.8"
classifiers = [ "Development Status :: 2 - Pre-Alpha", "Environment :: Plugins", "Programming Language :: Python :: 3", "Operating System :: OS Independent",]
dependencies = [ "hermes>=0.8.0",]
[[project.authors]]
name = "Michael Meinel"
email = "michael.meinel@dlr.de"
[[project.authors]]
name = "Michael Fritzsche"
[project.license]
text = "Apache-2.0"
[project.optional-dependencies]
dev = [ "pytest>=8.2.2", "pytest-cov>=3.0.0", "taskipy>=1.10.3", "flake8>=5.0.4", "reuse>=1.1.2",]
[project.urls]
Repository = "https://github.com/hermes-hmc/hermes-plugin-python"
[tool.setuptools]
packages = [ "hermes_toml",]
[project.entry-points."hermes.harvest"]
cff = "hermes.commands.harvest.cff:CffHarvestPlugin"
codemeta = "hermes.commands.harvest.codemeta:CodeMetaHarvestPlugin"
toml = "hermes_toml.harvest:TomlHarvestPlugin"
[tool.setuptools.package-dir]
"" = "src"