keithley-tempcontrol 2025.0.8__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,39 @@
1
+ # Python versions and environment
2
+
3
+ __pycache__
4
+ .python-version
5
+ .envrc
6
+
7
+ # Build systems
8
+
9
+ build
10
+ dist
11
+ **/*.egg-info
12
+
13
+ # Apple specific
14
+
15
+ .DS_Store
16
+
17
+ # Unit testing
18
+
19
+ .pytest_cache
20
+ .coverage
21
+ htmlcov
22
+
23
+ # Virtual environments
24
+
25
+ .env
26
+ .venv
27
+ venv
28
+
29
+ # PyCharm IDE
30
+
31
+ .idea
32
+
33
+ # MKDOCS documentation site
34
+
35
+ /site
36
+
37
+ # Packaging
38
+
39
+ uv.lock
@@ -0,0 +1,27 @@
1
+ Metadata-Version: 2.4
2
+ Name: keithley-tempcontrol
3
+ Version: 2025.0.8
4
+ Summary: Keithley Temperature Control for CGSE
5
+ Author: IVS KU Leuven
6
+ Maintainer-email: Rik Huygen <rik.huygen@kuleuven.be>, Sara Regibo <sara.regibo@kuleuven.be>
7
+ License-Expression: MIT
8
+ Keywords: CGSE,Common-EGSE,hardware testing,software framework,temperature control
9
+ Requires-Python: >=3.9
10
+ Requires-Dist: cgse-common
11
+ Requires-Dist: cgse-gui
12
+ Requires-Dist: pyqt5>=5.15.11
13
+ Provides-Extra: test
14
+ Requires-Dist: pytest; extra == 'test'
15
+ Requires-Dist: pytest-cov; extra == 'test'
16
+ Requires-Dist: pytest-mock; extra == 'test'
17
+ Description-Content-Type: text/markdown
18
+
19
+ # Keithley Temperature Control
20
+
21
+ # Implemented Devices
22
+
23
+ - DAQ6510
24
+
25
+ ## Reference Documents
26
+ - Model DAQ6510 Data Acquisition and Multimeter System Reference Manual (DAQ6510-901-01 Rev. B / September 2019)
27
+ - Model DAQ6510 Data Acquisition and Multimeter System User's Manual (DAQ6510-900-01 Rev. B / August 2019)
@@ -0,0 +1,9 @@
1
+ # Keithley Temperature Control
2
+
3
+ # Implemented Devices
4
+
5
+ - DAQ6510
6
+
7
+ ## Reference Documents
8
+ - Model DAQ6510 Data Acquisition and Multimeter System Reference Manual (DAQ6510-901-01 Rev. B / September 2019)
9
+ - Model DAQ6510 Data Acquisition and Multimeter System User's Manual (DAQ6510-900-01 Rev. B / August 2019)
@@ -0,0 +1,64 @@
1
+ [project]
2
+ name = "keithley-tempcontrol"
3
+ version = "2025.0.8"
4
+ description = "Keithley Temperature Control for CGSE"
5
+ authors = [
6
+ {name = "IVS KU Leuven"}
7
+ ]
8
+ maintainers = [
9
+ {name = "Rik Huygen", email = "rik.huygen@kuleuven.be"},
10
+ {name = "Sara Regibo", email = "sara.regibo@kuleuven.be"}
11
+ ]
12
+ readme = {"file" = "README.md", "content-type" = "text/markdown"}
13
+ requires-python = ">=3.9"
14
+ license = "MIT"
15
+ keywords = [
16
+ "CGSE",
17
+ "Common-EGSE",
18
+ "hardware testing",
19
+ "software framework",
20
+ "temperature control",
21
+ ]
22
+ dependencies = [
23
+ "cgse-common",
24
+ "cgse-gui",
25
+ "PyQt5>=5.15.11"
26
+ ]
27
+
28
+ [project.optional-dependencies]
29
+ test = ["pytest", "pytest-mock", "pytest-cov"]
30
+
31
+ [project.scripts]
32
+ daq6510_cs = 'egse.tempcontrol.keithley.daq650_cs:cli'
33
+
34
+ [project.gui-scripts]
35
+ daq6510_ui = "egse.tempcontrol.keithley.daq6510_ui:main"
36
+
37
+ [project.entry-points."cgse.version"]
38
+ keithley-tempcontrol = 'egse.plugins'
39
+
40
+ [project.entry-points."cgse.settings"]
41
+ keithley-tempcontrol = "keithley_tempcontrol:settings.yaml"
42
+
43
+ [project.entry-points."cgse.service.plugins"]
44
+ daq6510_cs = 'scripts.cgse_service_plugins:daq6510_cs'
45
+
46
+ [tool.hatch.build.targets.sdist]
47
+ exclude = [
48
+ "/tests",
49
+ "/pytest.ini",
50
+ "/.gitignore",
51
+ ]
52
+
53
+ [tool.hatch.build.targets.wheel]
54
+ packages = ["src/egse", "src/scripts"]
55
+
56
+ [tool.ruff]
57
+ line-length = 120
58
+
59
+ [tool.ruff.lint]
60
+ extend-select = ["E501"]
61
+
62
+ [build-system]
63
+ requires = ["hatchling"]
64
+ build-backend = "hatchling.build"
@@ -0,0 +1,4 @@
1
+ class TemperatureControlError(Exception):
2
+ """ Temperature control error for Keithley temperature control systems."""
3
+
4
+ pass