forked from micro-manager/ExEngine
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
42 lines (33 loc) · 892 Bytes
/
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
[build-system]
requires = ["flit_core >=3.2,<4"]
build-backend = "flit_core.buildapi"
[project]
name = "exengine"
authors = [{name = "Henry Pinkard", email = "[email protected]"}]
license = {file = "LICENSE"}
classifiers = [
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent"
]
dependencies = [
"pydantic",
"numpy"
]
dynamic = ["version"]
description = "Microscopy execution engine with support for multiple hardware backends"
readme = "README.md"
[project.optional-dependencies]
test = ["pytest"]
# all backends -- this should be the union of all the specific backends below
all = [
"mmpycorex",
"ndstorage"
]
# device backends
micromanager = ["mmpycorex"]
# storage backends
ndstorage = ["ndstorage"]
# documentation
docs = ["sphinx"]
[project.urls]
Home = "https://github.com/micro-manager/ExEngine"