-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
42 lines (38 loc) · 1.1 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
[tool.poetry]
name = "myoquant"
version = "0.3.5"
description = "MyoQuant🔬: a tool to automatically quantify pathological features in muscle fiber histology images."
authors = ["Corentin Meyer <[email protected]>"]
maintainers = ["Corentin Meyer <[email protected]>"]
license = "AGPL-3.0-or-later"
readme = "README.md"
homepage = "https://lbgi.fr/MyoQuant/"
repository = "https://github.com/lambda-science/MyoQuant"
keywords = ["histology", "quantification", "biology","deep-learning"]
[tool.poetry.scripts]
myoquant = "myoquant.__main__:app"
[tool.poetry.dependencies]
python = ">=3.8,<3.11"
tensorflow = "^2.9.1"
cellpose = "^2.1.0"
stardist = "^0.8.3"
csbdeep = "^0.7.2"
imageio = "^2.21.1"
scikit-image = "^0.19.3"
pandas = "^1.4.3"
typer = "^0.6.1"
rich = "*"
seaborn = "^0.12.2"
scikit-learn = "^1.2.0"
[tool.poetry.group.dev.dependencies]
ruff = "*"
mkdocs-material = "*"
black = {extras = ["jupyter"], version = "*"}
ipykernel = "*"
pytest = "*"
pre-commit = "*"
mypy = "*"
mkdocstrings = "*"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"