forked from TheDeanLab/navigate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
81 lines (73 loc) · 1.92 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
77
78
79
80
81
[build-system]
requires = ["setuptools>=43.0.0"]
build-backend = "setuptools.build_meta"
[project]
name = "navigate-micro"
description = "Open source, smart, light-sheet microscopy control software."
authors = [{name = "The Dean Lab, UT Southwestern Medical Center"}]
readme = "README.md"
license = {file = "LICENSE.md"}
dynamic = ["version"]
classifiers = [
"Intended Audience :: Developers",
"Operating System :: POSIX :: Linux",
"Operating System :: MacOS :: MacOS X",
"Operating System :: Microsoft :: Windows",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
]
requires-python = ">=3.9.7"
dependencies = [
'matplotlib-inline==0.1.3',
'PyYAML==6.0',
'pyserial==3.5',
'PIPython==2.6.0.1',
'nidaqmx==0.5.7',
'tifffile==2021.11.2',
'scipy==1.7.3',
'pyusb==1.2.1',
'pandas==1.3.5',
'pandastable==0.12.2.post1',
'opencv-python==4.5.5.62',
'numpy==1.22.0; sys_platform != "darwin"',
'numpy==1.21.6; sys_platform == "darwin"',
'scikit-image==0.19.1',
'zarr==2.14.2',
'fsspec==2022.8.2; sys_platform != "darwin"',
'fsspec==2022.5.0; sys_platform == "darwin"',
'h5py==3.7.0',
'requests==2.28.1',
'psutil==6.0.0'
]
[project.scripts]
navigate = "navigate.main:main"
[project.optional-dependencies]
dev = [
"pytest",
"pytest-xvfb",
"pytest-cov",
"pre-commit",
"ipykernel",
"jupyterlab",
"pydantic-ome-ngff==0.5.3"
]
docs = [
"numpydoc",
"nbconvert",
"sphinx<6.0.0",
"sphinx_rtd_theme",
"sphinx-copybutton",
"sphinx-issues",
"sphinx-design",
"pyyaml",
"pydata_sphinx_theme==0.10.0rc2",
"sphinx-toolbox"
]
robot = [
"mecademicpy",
]
[project.urls]
Source = "https://github.com/TheDeanLab/navigate"
[tool.setuptools.dynamic]
version = {file = "src/navigate/VERSION"}