-
Notifications
You must be signed in to change notification settings - Fork 7
/
pyproject.toml
53 lines (46 loc) · 1.53 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
[build-system]
requires = ["setuptools>=61.2"]
build-backend = "setuptools.build_meta"
[project]
name = "runcrate"
description = "Workflow Run RO-Crate toolkit"
keywords = ["ro-crate", "workflow", "provenance", "CWL", "CommonWL"]
classifiers = [
"Development Status :: 2 - Pre-Alpha",
"License :: OSI Approved :: Apache Software License",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Operating System :: MacOS :: MacOS X",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.12",
]
authors = [{name = "CRS4", email = "ro-crate@elixir-europe.org"}, {name = "RO-Crate community"}]
requires-python = ">=3.9, <4"
dependencies = [
"bdbag>=1.4.1",
"click~=8.1",
"cwl-utils==0.36",
"cwlprov==0.1.1",
"networkx==3.1",
"prov>=1.5.1",
"rocrate>=0.9,<1",
]
dynamic = ["version"]
[project.readme]
text = "Runcrate is a software toolkit to manipulate `Workflow Run RO-Crate <https://www.researchobject.org/workflow-run-crate/>`_ packages. Documentation is at http://www.researchobject.org/runcrate/."
content-type = "text/x-rst"
[project.urls]
Homepage = "https://github.com/ResearchObject/runcrate"
[project.scripts]
runcrate = "runcrate.cli:cli"
[tool.setuptools]
zip-safe = false
include-package-data = true
package-dir = {"" = "src"}
[tool.setuptools.packages.find]
where = ["src"]
namespaces = false
[tool.setuptools.dynamic]
version = {attr = "runcrate.__version__"}