-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
76 lines (68 loc) · 1.89 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
[build-system]
requires = ["setuptools>=61.0", "setuptools_scm[toml]>=6.2"]
build-backend = "setuptools.build_meta"
[tool.setuptools_scm]
[tool.setuptools.packages.find]
where = ["src"]
[project]
name = "locpix"
dynamic = ["version"]
# version = "0.0.1"
authors = [
{ name="Oliver Umney", email="[email protected]" },
]
description = "Package for analysing SMLM data"
readme = "README.rst"
requires-python = ">=3.7"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
dependencies = [
"polars",
"numpy",
"napari",
"matplotlib",
"imageio-ffmpeg", # napari needs this
"PyQt5", # napari needs this
"pyarrow",
"scikit-learn",
"python-dotenv",
"tifffile",
"pre-commit",
"seaborn",
"wandb",
"jupyter",
"mplcursors",
"ipympl",
]
[project.scripts]
preprocess = "locpix.scripts.preprocessing.preprocess:main"
annotate = "locpix.scripts.preprocessing.annotate:main"
classic = "locpix.scripts.img_seg.classic:main"
cellpose_eval = "locpix.scripts.img_seg.cellpose_eval:main"
ilastik_prep = "locpix.scripts.img_seg.ilastik_prep:main"
ilastik_output = "locpix.scripts.img_seg.ilastik_output:main"
membrane_performance = "locpix.scripts.img_seg.membrane_performance:main"
membrane_performance_method = "locpix.scripts.img_seg.membrane_performance_method:main"
agg_metrics = "locpix.scripts.img_seg.agg_metrics:main"
cellpose_train = "locpix.scripts.img_seg.cellpose_train:main"
train_prep = "locpix.scripts.img_seg.train_prep:main"
unet = "locpix.scripts.img_seg.unet_train:main"
[project.urls]
"Homepage" = "https://github.com/oubino/locpix"
"Bug Tracker" = "https://github.com/oubino/locpix/issues"
[tool.tox]
legacy_tox_ini = """
[tox]
envlist = py310
isolated_build = True
[gh-actions]
python =
3.10: py310
[testenv]
changedir = tests
deps = pytest
commands = pytest
"""