forked from Harrison-Oatman/PyCLM
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
38 lines (34 loc) · 764 Bytes
/
Copy pathpyproject.toml
File metadata and controls
38 lines (34 loc) · 764 Bytes
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
[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.13"
dependencies = [
"cellpose>=4.0.6",
"h5py>=3.14.0",
"natsort>=8.4.0",
"pandas-stubs==2.3.2.250827",
"pymmcore-plus>=0.16.0",
"scikit-image>=0.25.2",
"tifffile>=2025.9.20",
"toml>=0.10.2",
]
[dependency-groups]
analysis = [
"laptrack>=0.17.0",
"matplotlib>=3.10.6",
"pandas>=2.3.2",
"tqdm>=4.67.1",
]
dev = [
"pytest>=8.4.2",
]
[project.scripts]
pyclm = "pyclm.__main__:main"
[build-system]
requires = ["uv_build>=0.8.14,<0.9.0"]
build-backend = "uv_build"