-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
64 lines (59 loc) · 1.7 KB
/
pyproject.toml
File metadata and controls
64 lines (59 loc) · 1.7 KB
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
[project]
name = "myoquant"
version = "0.4.0"
description = "MyoQuant🔬: a tool to automatically quantify pathological features in muscle fiber histology images."
authors = [{name="Corentin Meyer", email="contact@cmeyer.fr"}]
maintainers = [{name="Corentin Meyer", email="contact@cmeyer.fr"}]
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"]
requires-python = "<3.13, >=3.10"
dependencies = [
"tensorflow>=2.19.0",
"keras>=3.9.0",
"cellpose<4.0.0",
"stardist>=0.9.1",
"numpy<2.0.0",
"csbdeep>=0.8.1",
"imageio>=2.37.0",
"scikit-image>=0.25.2",
"pandas>=2.2.3",
"typer>=0.15.2",
"rich>=13.9.4",
"seaborn>=0.13.2",
"scikit-learn>=1.6.1",
"textual>=2.1.2",
"streamlit>=1.44.0",
"pyngrok>=5.2.3",
"matplotlib>=3.9.4",
"ipykernel>=6.29.5",
"pillow>=11.1.0",
"tifffile>=2025.3.13",
"huggingface-hub>=0.32.4",
"trogon>=0.6.0",
]
[project.scripts]
myoquant = "myoquant.__main__:app"
[tool.uv]
dev-dependencies = [
"ruff",
"mkdocs-material",
"ipykernel",
"pytest",
"pre-commit",
"mkdocstrings",
"mypy",
"tensorflow-metal>=1.2.0",
]
[project.urls]
Homepage = "https://github.com/lambda-science/MyoQuant"
Documentation = "https://github.com/lambda-science/MyoQuant/blob/main/CLI_Documentation.md"
Repository = "https://github.com/lambda-science/MyoQuant"
Issues = "https://github.com/lambda-science/MyoQuant/issues"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["src/myoquant"]