-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
97 lines (85 loc) · 1.65 KB
/
pyproject.toml
File metadata and controls
97 lines (85 loc) · 1.65 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
[project]
name = "PyCLM"
version = "0.1.0"
description = "Closed-loop feedback control for optogenetic microscopy in Python"
readme = "README.md"
authors = [
{ name = "Harrison-Oatman", email = "ho6729@princeton.edu" }
]
requires-python = ">=3.11"
dependencies = [
"h5py>=3.14.0",
"natsort>=8.4.0",
"notebook>=7.5.1",
"opencv-python>=4.12.0.88",
"pandas-stubs==2.3.2.250827",
"pymmcore-plus==0.13.7",
"pymmcore==11.2.1.71.0",
"scikit-image>=0.25.2",
"tifffile>=2025.9.20",
"toml>=0.10.2",
]
[optional-dependencies]
cellpose = [
"cellpose>=4.0.6",
"torch",
"torchvision",
]
calibration = [
"pycromanager>=1.0.2",
]
[dependency-groups]
analysis = [
"laptrack>=0.17.0",
"matplotlib>=3.10.6",
"pandas>=2.3.2",
"tqdm>=4.67.1",
"statannotations>=0.7.2",
]
docs = [
"matplotlib>=3.10.6",
"myst-parser",
"nox>=2025.2.9",
"pytest>=8.4.2",
"scipy>=1.15.0",
"sphinx",
"sphinx-rtd-theme",
]
dev = [
{ include-group = "analysis" },
{ include-group = "docs" },
]
test = [
"pytest>=8.4.2",
]
[tool.uv.sources]
torch = [
{ index = "pytorch-cu128" },
]
torchvision = [
{ index = "pytorch-cu128" },
]
[[tool.uv.index]]
name = "pytorch-cu128"
url = "https://download.pytorch.org/whl/cu128"
explicit = true
[tool.ruff.lint]
select = [
"B",
"I",
"RUF",
"PT",
"UP",
]
[project.scripts]
pyclm = "pyclm.__main__:main"
convert_hdf5s = "pyclm.convert_hdf5s:main"
[project.optional-dependencies]
analysis = [
"colorcet>=3.1.0",
"colorstamps>=0.1.3",
"seaborn>=0.13.2",
]
[build-system]
requires = ["uv_build>=0.8.14,<0.9.0"]
build-backend = "uv_build"