-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
128 lines (125 loc) · 5.75 KB
/
pyproject.toml
File metadata and controls
128 lines (125 loc) · 5.75 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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
[build-system]
# requires = ["hatchling >= 1.26"]
# build-backend = "hatchling.build"
requires = ["setuptools >= 77.0.3"]
build-backend = "setuptools.build_meta"
[project]
name = "qubichw"
version = "2.0.0"
authors = [
{ name="Steve Torchinsky", email="satorchi@apc.in2p3.fr" },
]
description = "Utilities for QUBIC hardware control and monitoring"
readme = "README.md"
requires-python = ">=3.9"
classifiers = [
"Programming Language :: Python :: 3",
"Operating System :: POSIX :: Linux",
]
license = "GPL-3.0-or-later"
[project.urls]
Homepage = "https://github.com/satorchi/qubichw"
# These are bash scripts
[tool.setuptools]
packages = ["qubichk","qubichw","pystudio"]
script-files = ["qubichk/scripts/start_calsource_acq.sh",
"qubichk/scripts/start_calsource_manager.sh",
"qubichk/scripts/start_cf_manager.sh",
"qubichk/scripts/start_bot.sh",
"qubichk/scripts/start_hkserver.sh",
"qubichk/scripts/qubic_poweron",
"qubichk/scripts/qubic_poweroff",
"qubichk/scripts/hwpon",
"qubichk/scripts/hwpoff",
"qubichk/scripts/hornon",
"qubichk/scripts/hornoff",
"qubichk/scripts/thermoson",
"qubichk/scripts/thermosoff",
"qubichk/scripts/heaterson",
"qubichk/scripts/heatersoff",
"qubichk/scripts/compressor1on",
"qubichk/scripts/compressor1off",
"qubichk/scripts/compressor2on",
"qubichk/scripts/compressor2off",
"qubichk/scripts/compressorstatus",
"qubichk/scripts/compressor1reset",
"qubichk/scripts/compressor2reset",
"qubichk/scripts/calsource_commander.py",
"qubichk/scripts/cf_commander.py",
"qubichk/powersupply.py",
"qubichk/scripts/run_bot.py",
"qubichk/scripts/run_hkserver.py",
"qubichk/scripts/calsource2fits.py",
"qubichk/scripts/run_horn_monitor.py",
"qubichk/scripts/plot_hornswitch.py",
"qubichk/scripts/calsource_hourly_save.py",
"qubichw/read_calsource.py",
"qubichk/scripts/mmr_mes1.py",
"qubichk/scripts/hk_ok.py",
"qubichk/scripts/compressor_commander.py",
"qubichk/scripts/compressor_log.py",
"qubichk/scripts/central_command.py",
"qubichk/scripts/ups_alarm.py",
"qubichk/scripts/ups_log.py",
"qubichk/scripts/calsource_on",
"qubichk/scripts/calsource_off",
"qubichk/scripts/show_hk.py",
"qubichk/scripts/show_hk",
"qubichk/scripts/show_position.py",
"qubichk/scripts/stop_mount.py",
"qubichk/scripts/mountplc_acquisition.py",
"pystudio/scripts/do_init_mount.py",
"qubichk/scripts/start_apctunnel.sh",
"qubichk/scripts/start_cctunnel.sh",
"qubichk/scripts/configfile_backup.sh",
"qubichk/scripts/test_alarm.py",
"qubichk/scripts/copydata",
"qubichk/scripts/mount_entropy.sh",
"qubichk/scripts/weather.py",
"qubichk/scripts/start_weather.sh",
"qubichk/scripts/mech_openclose.py",
"qubichk/scripts/kellypi_on",
"qubichk/scripts/kellypi_off",
"qubichk/scripts/fpga_on",
"qubichk/scripts/fpga_off",
"qubichk/scripts/energenie_commander.py",
"qubichw/read_usbthermometer.py",
"qubichk/scripts/start_usbthermometer_acq.sh",
"qubichk/scripts/run_gps_acquisition.py",
"qubichk/scripts/run_gps_broadcast.py",
"qubichk/scripts/start_gps_acquisition.sh",
"qubichk/scripts/start_gps_broadcast.sh",
"qubichk/scripts/start_ups.sh",
"qubichk/scripts/run_MCP9808_acquisition.py",
"qubichk/scripts/run_MCP9808_broadcast.py",
"qubichk/scripts/start_MCP9808_acquisition.sh",
"qubichk/scripts/start_MCP9808_broadcast.sh",
"qubichk/scripts/run_heater_manager.py",
"qubichk/scripts/start_heater_manager.sh",
"qubichk/scripts/goto_pos.py",
"qubichk/scripts/goto_az",
"qubichk/scripts/goto_el",
"qubichk/scripts/kill_all_fridge_cycles.py",
"qubichk/scripts/send_telegram_to_subscribers.py",
"qubichk/scripts/run_obsmount_rebroadcaster.py",
"qubichk/scripts/start_obsmount_rebroadcaster.sh",
"pystudio/scripts/do_constant_elevation_scanning.py",
"pystudio/scripts/do_skydip_sequence.py",
"pystudio/scripts/do_IV_sequence.py",
"pystudio/scripts/do_NEP_sequence.py",
"pystudio/scripts/do_SQUID_sequence.py",
"pystudio/scripts/do_init_frontend.py",
"pystudio/scripts/get_frontend_settings.py",
"pystudio/scripts/do_DACoffset_measurement.py",
"pystudio/scripts/do_set_observation_mode.py",
"pystudio/scripts/do_start_acquisition.py",
"pystudio/scripts/do_start_observation.py",
"pystudio/scripts/do_end_observation.py",
"pystudio/scripts/do_assign_saved_DACoffsetTables.py",
"pystudio/scripts/do_assign_default_DACoffsetTables.py",
"pystudio/scripts/do_park_frontend.py",
"pystudio/scripts/do_Vbias_optimisation_sequence.py",
"pystudio/scripts/do_skydips_Vbias.py",
"qubichk/scripts/archive-data.sh",
"qubichk/scripts/clean-hk.sh",
"qubichk/scripts/start_gpsd-ntpd.sh"]