keithley-tempcontrol 0.1.0__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,28 @@
1
+ Metadata-Version: 2.4
2
+ Name: keithley-tempcontrol
3
+ Version: 0.1.0
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-core
12
+ Requires-Dist: cgse-gui
13
+ Requires-Dist: pyqt5>=5.15.11
14
+ Provides-Extra: test
15
+ Requires-Dist: pytest; extra == 'test'
16
+ Requires-Dist: pytest-cov; extra == 'test'
17
+ Requires-Dist: pytest-mock; extra == 'test'
18
+ Description-Content-Type: text/markdown
19
+
20
+ # Keithley Temperature Control
21
+
22
+ # Implemented Devices
23
+
24
+ - DAQ6510
25
+
26
+ ## Reference Documents
27
+ - Model DAQ6510 Data Acquisition and Multimeter System Reference Manual (DAQ6510-901-01 Rev. B / September 2019)
28
+ - 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,65 @@
1
+ [project]
2
+ name = "keithley-tempcontrol"
3
+ version = "0.1.0"
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-core",
25
+ "cgse-gui",
26
+ "PyQt5>=5.15.11"
27
+ ]
28
+
29
+ [project.optional-dependencies]
30
+ test = ["pytest", "pytest-mock", "pytest-cov"]
31
+
32
+ [project.scripts]
33
+ daq6510_cs = 'egse.tempcontrol.keithley.daq650_cs:cli'
34
+
35
+ [project.gui-scripts]
36
+ daq6510_ui = "egse.tempcontrol.keithley.daq6510_ui:main"
37
+
38
+ [project.entry-points."cgse.version"]
39
+ keithley-tempcontrol = ''
40
+
41
+ [project.entry-points."cgse.settings"]
42
+ keithley-tempcontrol = "keithley_tempcontrol:settings.yaml"
43
+
44
+ [project.entry-points."cgse.service"]
45
+ daq6510 = 'keithley_tempcontrol.cgse_services:daq6510'
46
+
47
+ [tool.hatch.build.targets.sdist]
48
+ exclude = [
49
+ "/tests",
50
+ "/pytest.ini",
51
+ "/.gitignore",
52
+ ]
53
+
54
+ [tool.hatch.build.targets.wheel]
55
+ packages = ["src/egse", "src/keithley_tempcontrol"]
56
+
57
+ [tool.ruff]
58
+ line-length = 120
59
+
60
+ [tool.ruff.lint]
61
+ extend-select = ["E501"]
62
+
63
+ [build-system]
64
+ requires = ["hatchling"]
65
+ build-backend = "hatchling.build"
@@ -0,0 +1,4 @@
1
+ class TemperatureControlError(Exception):
2
+ """ Temperature control error for Keithley temperature control systems."""
3
+
4
+ pass