-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
49 lines (44 loc) · 941 Bytes
/
pyproject.toml
File metadata and controls
49 lines (44 loc) · 941 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
39
40
41
42
43
44
45
46
47
48
49
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "djimaging"
version = "1.2.0"
description = "DataJoint for 2P imaging data"
authors = [{ name = "Jonathan Oesterle", email = "jonathan.oesterle@uni-tuebingen.de" }]
requires-python = ">=3.10"
dependencies = [
"datajoint>=0.13",
"numpy",
"h5py",
"scipy",
"cached_property",
"matplotlib",
"pandas",
"seaborn",
"scikit-learn",
"opencv-python",
"astropy",
"ipython",
"numba",
"scanm-support",
]
[project.optional-dependencies]
autorois = [
"pytorch_lightning",
"torch",
"ipywidgets",
"ipycanvas",
]
rf = [
"rfest>=2.1.2",
]
dev = [
"pytest",
]
[tool.setuptools.packages.find]
where = ["."]
[tool.pytest.ini_options]
markers = ["dependency: mark a test as a dependency"]
[tool.uv.sources]
scanm-support = { git = "https://github.com/eulerlab/ScanM_support.git" }