-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
55 lines (49 loc) · 1.65 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
# SPDX-FileCopyrightText: 2023 German Aerospace Center (DLR)
#
# SPDX-License-Identifier: CC0-1.0
[build-system]
requires = ["setuptools>=65.0"]
build-backend = "setuptools.build_meta"
[project]
name = "bacardi-prov-model"
description = "A reference implementation for the BACARDI PROV data model."
requires-python = ">=3.8"
readme = { file = "README.md", content-type = "text/markdown" }
license = { file = "LICENSE" }
authors = [{ name = "Martin Stoffers", email = "[email protected]" }]
maintainers = [
{ name = "Andreas Schreiber", email = "[email protected]" },
]
dependencies = [
"prov>=2.0.0",
"pydot"
]
keywords = [
"prov",
"provenance",
"prov generation",
"w3c prov",
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
"Programming Language :: Python :: 3 :: Only",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Information Analysis",
]
dynamic = ["version"]
[project.scripts]
task-bundle = "bacardi_prov_model.examples.task_bundle:main"
simple-task-bundle = "bacardi_prov_model.examples.simple_task_bundle:main"
multi-task-bundle = "bacardi_prov_model.examples.multiple_task_bundle:main"
[project.urls]
Twitter = "https://twitter.com/dlr_software"
"Source Code" = "https://github.com/dlr-sc/bacardi-prov-model"
"Issue Tracker" = "https://github.com/dlr-sc/bacardi-prov-model/issues"
[tool.setuptools.dynamic]
version = { attr = "bacardi_prov_model.__version__" }
[tool.setuptools.packages.find]
exclude = ["example-output"]