|
1 | 1 | [build-system] |
2 | | -requires = [ |
3 | | - "setuptools >= 46.4.0" |
4 | | -] |
| 2 | +requires = ["setuptools>=61.2"] |
5 | 3 | build-backend = "setuptools.build_meta" |
| 4 | + |
| 5 | +[project] |
| 6 | +name = "runcrate" |
| 7 | +description = "Workflow Run RO-Crate toolkit" |
| 8 | +keywords = ["ro-crate", "workflow", "provenance", "CWL", "CommonWL"] |
| 9 | +classifiers = [ |
| 10 | + "Development Status :: 2 - Pre-Alpha", |
| 11 | + "License :: OSI Approved :: Apache Software License", |
| 12 | + "Intended Audience :: Developers", |
| 13 | + "Intended Audience :: Science/Research", |
| 14 | + "Operating System :: MacOS :: MacOS X", |
| 15 | + "Operating System :: POSIX :: Linux", |
| 16 | + "Programming Language :: Python :: 3.8", |
| 17 | + "Programming Language :: Python :: 3.9", |
| 18 | + "Programming Language :: Python :: 3.10", |
| 19 | +] |
| 20 | +authors = [{ name = "CRS4", email = "[email protected]"}, { name = "RO-Crate community"}] |
| 21 | +requires-python = ">=3.8, <4" |
| 22 | +dependencies = [ |
| 23 | + "bdbag>=1.4.1", |
| 24 | + "click~=8.1", |
| 25 | + "cwl-utils==0.33", |
| 26 | + "cwlprov==0.1.1", |
| 27 | + "networkx==3.1", |
| 28 | + "prov>=1.5.1", |
| 29 | + "rocrate>=0.9,<1", |
| 30 | +] |
| 31 | +dynamic = ["version"] |
| 32 | + |
| 33 | +[project.readme] |
| 34 | +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/." |
| 35 | +content-type = "text/x-rst" |
| 36 | + |
| 37 | +[project.urls] |
| 38 | +Homepage = "https://github.com/ResearchObject/runcrate" |
| 39 | + |
| 40 | +[project.scripts] |
| 41 | +runcrate = "runcrate.cli:cli" |
| 42 | + |
| 43 | +[tool.setuptools] |
| 44 | +zip-safe = false |
| 45 | +include-package-data = true |
| 46 | +package-dir = {"" = "src"} |
| 47 | + |
| 48 | +[tool.setuptools.packages.find] |
| 49 | +where = ["src"] |
| 50 | +namespaces = false |
| 51 | + |
| 52 | +[tool.setuptools.dynamic] |
| 53 | +version = {attr = "runcrate.__version__"} |
0 commit comments