-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
84 lines (75 loc) · 1.93 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
82
83
84
[project]
name = "exaspim-control"
description = "Control software for the ExaSPIM microscope"
requires-python = ">=3.10, <3.12"
authors = [
{ name = "Micah Woodard", email = "[email protected]" },
{ name = "Adam Glaser", email = "[email protected]" },
{ name = "Walter Mwaniki", email = "[email protected]" },
]
classifiers = [
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
readme = "README.md"
license = { file = "LICENSE" }
keywords = [
"ExaSPIM",
"SPIM",
"microscopy",
"light-sheet",
"lightsheet",
"microscope",
"imaging",
]
dynamic = ["version"]
dependencies = [
"coherent-lasers @ git+https://github.com/AllenNeuralDynamics/coherent-lasers.git",
"voxel[imaris]",
"nidaqmx >= 0.9.0",
"ruamel-yaml >= 0.18.5",
"aind_data_schema >= 0.26.7",
"scikit-image >= 0.20.0",
]
[project.optional-dependencies]
"dev" = ["black", "isort", "flake8"]
[project.urls]
"Homepage" = "https://github.com/AllenNeuralDynamics/exaspim-control"
[project.scripts]
"exaspim" = "exaspim_control.app:cli"
[build-system]
requires = ["setuptools", "setuptools-scm"]
build-backend = "setuptools.build_meta"
[tool.setuptools]
package-dir = { "" = "src" }
packages = ["exaspim_control"]
[tool.setuptools.dynamic]
version = { attr = "exaspim_control.__version__" }
[tool.black]
line-length = 120
target-version = ["py310"]
exclude = '''
(
/(
\.eggs # exclude a few common directories in the
| \.git # root of the project
| \.hg
| \.mypy_cache
| \.pytest_cache
| \.tox
| \.venv
| __pycache__
| _build
| build
| dist
)/
| .gitignore
| \.pyi?$
| \.yaml$
)'''
[tool.isort]
line_length = 120
profile = "black"