-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathpyproject.toml
More file actions
91 lines (81 loc) · 1.96 KB
/
pyproject.toml
File metadata and controls
91 lines (81 loc) · 1.96 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
[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-files = ["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',
'scipy',
'pyusb==1.2.1',
'pandas',
'pandastable==0.12.2.post1',
'opencv-python',
'numpy; sys_platform != "darwin"',
'numpy; sys_platform == "darwin"',
'scikit-image',
'zarr',
'fsspec; sys_platform != "darwin"',
'fsspec; sys_platform == "darwin"',
'h5py',
'requests',
'psutil==6.0.0',
]
[project.scripts]
navigate = "navigate.main:main"
[project.optional-dependencies]
photometrics = [
"PyVCAM"
]
dev = [
"pytest",
"pytest-xvfb",
"pytest-cov",
"pre-commit",
"pytest-rerunfailures",
"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",
"mss",
"codespell"
]
robot = [
"mecademicpy",
]
[project.urls]
Source = "https://github.com/TheDeanLab/navigate"
[tool.setuptools.dynamic]
version = {file = "src/navigate/VERSION"}
[tool.coverage.run]
relative_files = true