-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
96 lines (82 loc) · 3.73 KB
/
pyproject.toml
File metadata and controls
96 lines (82 loc) · 3.73 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
92
93
94
95
96
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "dirigo"
version = "0.3.13"
description = "Dirigo is an extensible backend for scientific image acquisition"
authors = [
{name = "T. D. Weber", email = "tweber@mit.edu"}
]
license = {text = "MIT"}
readme = "README.md"
requires-python = ">=3.11"
classifiers = [
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"License :: OSI Approved :: MIT License",
"Operating System :: Microsoft :: Windows",
"Topic :: System :: Hardware"
]
dependencies = [
"numba",
"scipy",
"toml",
"platformdirs",
"tifffile",
"nidaqmx"
]
urls = {"Homepage" = "https://github.com/dirigo-developers/dirigo"}
[project.scripts]
dirigo-init = "dirigo.init:main"
[project.entry-points."dirigo_acquisitions"]
raster_line = "dirigo.plugins.acquisitions:LineAcquisition"
raster_frame = "dirigo.plugins.acquisitions:FrameAcquisition"
raster_stack = "dirigo.plugins.acquisitions:StackAcquisition"
line_camera_line = "dirigo.plugins.acquisitions:LineCameraLineAcquisition"
# calibrations (create data for calibrations)
trigger_delay_calibration = "dirigo.plugins.calibrations:TriggerDelayCalibration"
stage_translation_calibration = "dirigo.plugins.calibrations:StageTranslationCalibration"
laser_frequency_calibration = "dirigo.plugins.calibrations:LaserPulseFrequencyCalibration"
[project.entry-points."dirigo_loaders"]
raw_raster_frame = "dirigo.plugins.loaders:RawRasterFrameLoader"
[project.entry-points."dirigo_processors"]
raster_frame = "dirigo.plugins.processors:RasterFrameProcessor"
line_camera_line = "dirigo.plugins.processors:LineCameraLineProcessor"
rolling_average = "dirigo.plugins.processors:RollingAverageProcessor"
[project.entry-points."dirigo_color_vectors"]
gray = "dirigo.plugins.displays:Gray"
red = "dirigo.plugins.displays:Red"
green = "dirigo.plugins.displays:Green"
blue = "dirigo.plugins.displays:Blue"
cyan = "dirigo.plugins.displays:Cyan"
magenta = "dirigo.plugins.displays:Magenta"
yellow = "dirigo.plugins.displays:Yellow"
[project.entry-points."dirigo_transfer_functions"]
gamma = "dirigo.plugins.displays:Gamma"
inverted_gamma = "dirigo.plugins.displays:InvertedGamma"
[project.entry-points."dirigo_displays"] # e.g. display processors
frame = "dirigo.plugins.displays:FrameDisplay"
[project.entry-points."dirigo_writers"]
tiff = "dirigo.plugins.writers:TiffWriter"
# special calibration writers
trigger_delay_calibration = "dirigo.plugins.calibrations:TriggerDelayCalibrationWriter"
#line_distortion_calibration = "dirigo.plugins.calibrations:LineDistortionCalibrationWriter"
#stage_scanner_angle_calibration = "dirigo.plugins.calibrations:StageScannerAngleCalibrationWriter"
signal_offset_calibration = "dirigo.plugins.calibrations:SignalOffsetCalibrationWriter"
line_gradient_calibration = "dirigo.plugins.calibrations:LineGradientCalibrationWriter"
[project.entry-points."dirigo_encoders"]
linear_encoders_via_ni = "dirigo.plugins.encoders:MultiAxisLinearEncodersViaNI"
[project.entry-points."dirigo_scanners"]
resonant_scanner_via_ni = "dirigo.plugins.scanners:ResonantScannerViaNI"
polygon_scanner_via_ni = "dirigo.plugins.scanners:PolygonScannerViaNI"
fast_galvo_scanner_via_ni = "dirigo.plugins.scanners:FastGalvoScannerViaNI"
slow_galvo_scanner_via_ni = "dirigo.plugins.scanners:SlowGalvoScannerViaNI"
[project.entry-points."dirigo_beam_attenuators"]
half_wave_plate = "dirigo.plugins.beam_attenuators:HalfWavePlateAttenuator"
[project.entry-points."dirigo_illuminators"]
led_via_ni = "dirigo.plugins.illuminators:LEDViaNI"
[project.entry-points."dirigo_detectors"]
generic = "dirigo.plugins.detectors:GenericDetector"