-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
56 lines (46 loc) · 1.23 KB
/
pyproject.toml
File metadata and controls
56 lines (46 loc) · 1.23 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
# SPDX-License-Identifier: CC0-1.0
#
# SPDX-FileCopyrightText: 2024 German Aerospace Center (DLR)
#
# SPDX-FileContributor: Michael Meinel
# SPDX-FileContributor: Michael Fritzsche
[project]
name = "hermes-plugin-python"
version = "0.2.0"
readme = "README.md"
description = "HERMES plugin for .toml files"
license = { text = "Apache-2.0" }
authors = [
{ name = "Michael Fritzsche" },
{ name = "Michael Meinel", email = "michael.meinel@dlr.de" },
]
keywords = [ "publishing", "metadata", "automation",]
classifiers = [
"Development Status :: 2 - Pre-Alpha",
"Environment :: Plugins",
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
]
requires-python = ">= 3.8"
dependencies = [
"hermes>=0.8.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"]
toml = "hermes_toml.harvest:TomlHarvestPlugin"
[tool.setuptools.package-dir]
"" = "src"
[build-system]
requires = [ "setuptools >= 70.1.1",]
build-backend = "setuptools.build_meta"