-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
48 lines (44 loc) · 794 Bytes
/
pyproject.toml
File metadata and controls
48 lines (44 loc) · 794 Bytes
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
[build-system]
requires = ["setuptools", "wheel"]
[project]
name = "squid-control"
version = "0.1.0"
readme = "README.md"
description = "Squid Microscope Control Software"
dependencies = [
"pyserial",
"pandas",
"imageio",
"scipy",
"crc==1.3.0",
"tifffile",
"opencv-python",
"lxml",
"scikit-image"
]
[project.optional-dependencies]
all = [
"qtpy",
"pyqt5",
"pyqt5-tools",
"pyqtgraph",
"tensorrt",
]
qt = [
"qtpy",
"pyqt5",
"pyqt5-tools",
"pyqtgraph",
]
tracking = [
"tensorrt",
]
[tool.setuptools]
include-package-data = true
[tool.setuptools.packages.find]
include = ["squid_control*"]
exclude = ["tests*", "scripts*"]
[options.entry_points]
console_scripts = [
"squid-control = squid_control.__main__:main",
]