-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpyproject.toml
47 lines (44 loc) · 1.28 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
[tool.poetry]
name = "nspyre-drivers"
version = "0.1.6"
description = "A set of Python drivers for lab instrumentation."
authors = [
"Jacob Feder <jacobsfeder@gmail.com>",
"Ben Soloway",
"Will Burke",
"Kimberly Carrillo Rivera"
]
maintainers = [
"Jacob Feder <jacobsfeder@gmail.com>"
]
readme = "README.md"
packages = [{include = "nspyre_drivers", from = "src"}]
[tool.poetry.dependencies]
python = "^3.7"
pyvisa = "*"
pyvisa-py = "*"
pyserial = "*"
pyusb = "*"
numpy = "*"
# extras
requests = { version = "*", optional = true }
beautifulsoup4 = { version = "*", optional = true }
dlipower = { version = "*", optional = true }
seabreeze = { version = "*", optional = true }
ximea-py = { version = "*", optional = true }
zaber-motion = { version = "*", optional = true }
nidaqmx = { version = "*", optional = true }
pycobolt = { git = "https://github.com/cobolt-lasers/pycobolt.git", optional = true}
pylablib-lightweight = { version = "*", optional = true, extras = ["devio"] }
[tool.poetry.extras]
beaglebone = ["requests"]
cobolt = ["pycobolt"]
dli_pdu = ["dlipower", "beautifulsoup4"]
oceanoptics = ["seabreeze"]
ximea = ["ximea-py"]
zaber = ["zaber-motion"]
nidaq = ["nidaqmx"]
kinesis = ["pylablib-lightweight"]
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"