File size: 499 Bytes
9d54b72 |
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 |
[tool.poetry]
name = "vcelldata"
version = "0.1.0"
description = ""
authors = ["Jim Schaff <schaff.jim@gmail.com>"]
readme = "README.md"
packages = [{ include = "vcelldata" }]
[tool.poetry.dependencies]
python = "^3.9"
typer = "^0.12.3"
numexpr = "^2.10.0"
zarr = "^2.17.2"
matplotlib = "^3.8.4"
h5py = "^3.11.0"
pathlib = "^1.0.1"
jupyterlab = "^4.1.8"
[tool.poetry.group.dev.dependencies]
pytest = "^7.4.4"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
|