-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
61 lines (53 loc) · 1.46 KB
/
pyproject.toml
File metadata and controls
61 lines (53 loc) · 1.46 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
[tool.flet.flutter.pubspec.dependency_overrides]
webview_flutter_android = "4.10.1"
[tool.flet.app]
path = "src"
[tool.poetry]
name = "cellsepi"
version = "1.1.9.9.4"
description = "Segmentation of microscopy images and data analysis pipeline with a graphical user interface, powered by Cellpose."
authors = ["Jenna Ahlvers", "Santosh Chhetri Thapa", "Nike Dratt", "Pascal Heß", "Florian Hock"]
license = "Apache-2.0"
homepage = "https://github.com/PraiseTheDarkFlo/CellSePi"
readme = "README.md"
packages = [
{ include = "cellsepi", from = "src" }
]
[tool.poetry.dependencies]
python = ">=3.10,<4.0"
numpy = "1.26.4"
pillow = "11.3.0"
pandas = "2.2.3"
openpyxl = "3.1.5"
cellpose = "3.1.1.1"
flet = "0.28.3"
flet-cli = "0.28.3"
flet-desktop = "0.28.3"
flet-runtime = "0.24.1"
bioio = "1.2.0"
numba = "0.61.0"
matplotlib = "3.10.1"
pyqt5 = "5.15.11"
flet_contrib = "2024.12.3"
flet_core = "0.24.1"
bioio-lif = "1.0.0"
torchvision = "0.17.2"
imageio = "2.11.0"
jsonschema = "4.25.1"
flet-extended-interactive-viewer = "0.1.2"
big-fish = "0.6.2"
[tool.poetry.group.dev.dependencies]
pytest = "8.3.4"
[tool.poetry.scripts]
cellsepi = "cellsepi.main:main"
[[tool.poetry.include]]
path = "src/cellsepi/models/**/*"
[[tool.poetry.include]]
path = "src/cellsepi/config.json"
[[tool.poetry.include]]
path = "src/cellsepi/csp.schema.json"
[[tool.poetry.include]]
path = "src/cellsepi/pyproject.toml"
[build-system]
requires = ["poetry-core>=1.3.0"]
build-backend = "poetry.core.masonry.api"