-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
34 lines (30 loc) · 972 Bytes
/
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
[tool.poetry]
name = "workflomics-benchmarker"
version = "0.2.2"
description = "Library used to execute workflows (in CWL) and benchmark them as part of the Workflomics ecosystem."
authors = ["Vedran Kasalica <[email protected]>",
"Nauman Ahmed <[email protected]>",
"Peter Kok <[email protected]>"]
license = "Apache-2.0"
classifiers = [
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
]
readme = "README.md"
[tool.poetry.dependencies]
python = ">=3.10,<3.13"
pyyaml = "^6.0"
cwltool= "^3.1"
jsonpath-ng = "^1.6.1"
pandas = "^2.2.2"
[tool.poetry.group.dev.dependencies]
ipykernel = "^6.27.1"
pytest = "^7.4.3"
pytest-datadir = "^1.5.0"
pytest-cov = "^4.1.0"
[tool.poetry.scripts]
workflomics = "workflomics_benchmarker.workflomics:main"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"