-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
31 lines (25 loc) · 975 Bytes
/
pyproject.toml
File metadata and controls
31 lines (25 loc) · 975 Bytes
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
[tool.poetry]
name = "bia-ro-crate"
version = "0.0.1"
description = ""
authors = []
readme = "Readme.md"
[tool.poetry.scripts]
bia-ro-crate = "bia_ro_crate.cli:bia_ro_crate"
[tool.poetry.dependencies]
python = "^3.10,<3.12"
pydantic = "^2.4.0"
bia-shared-datamodels = { git = "https://github.com/BioImage-Archive/bia-integrator.git", subdirectory = "bia-shared-datamodels" }
bia-integrator-api = { git = "https://github.com/BioImage-Archive/bia-integrator.git", subdirectory = "clients/python", branch = "main" }
#ome2024-ngff-challenge = { git = "https://github.com/ome/ome2024-ngff-challenge.git", branch = "main" } this depend on rocrate 0.10 and so is incompatible with the rocrate version listed below
typer = "^0.12.5"
rocrate = "^0.13"
linkml = "^1.8.7"
roc-validator = "^0.6.1"
deepdiff = "^8.3.0"
pyld = "^2.0.4"
[tool.poetry.group.dev.dependencies]
black = "^23.12.1"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"