-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
61 lines (54 loc) · 1.36 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
[build-system]
build-backend = "flit_core.buildapi"
requires = ["flit_core >=3.4,<4"]
[project]
# name = "livecell-profiler"
name = "livecellx"
version = "0.0.2"
description = "live-cell analysis package including instance segmentation and tracker"
authors = [{ name = "Ke Ni", email = "ken67@pitt.edu" }]
readme = "readme.md"
classifiers = ["License :: OSI Approved :: GNU General Public License v3 (GPLv3)"]
requires-python = ">=3.8"
# dynamic = ["dependencies", "version", "description"]
# dynamic = ["dependencies"]
[tool.flit.module]
name = "livecellx"
dependencies = [
"numpy",
"pandas",
"Pillow",
"scikit-image",
"ipympl",
"matplotlib",
"torchmetrics==0.8.2",
"sahi>=0.8.19",
"jsonschema>=2.6.0",
"pycocotools",
"pytorch-lightning==1.5.6",
"Augmentor",
"cellpose",
"opencv-contrib-python",
"filterpy",
"mahotas",
"seaborn",
"umap-learn",
"napari[all]"
]
[project.urls]
homepage = "https://github.com/xing-lab-pitt/livecellx"
documentation = "https://github.com/xing-lab-pitt/livecellx"
repository = "https://github.com/xing-lab-pitt/livecellx"
[project.scripts]
poetry = "infer_pyproject.cli:main"
[project.optional-dependencies]
docs = [
"sphinx",
"sphinx_rtd_theme",
"nbsphinx",
"sphinx_autodoc_typehints",
"sphinxcontrib-bibtex",
"sphinx-gallery",
"furo",
"GitPython",
]