cgse-common 2024.1.0__tar.gz → 2024.1.3__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.
- {cgse_common-2024.1.0 → cgse_common-2024.1.3}/.gitignore +2 -0
- {cgse_common-2024.1.0 → cgse_common-2024.1.3}/PKG-INFO +13 -5
- {cgse_common-2024.1.0 → cgse_common-2024.1.3}/README.md +8 -2
- {cgse_common-2024.1.0 → cgse_common-2024.1.3}/pyproject.toml +8 -4
- {cgse_common-2024.1.0 → cgse_common-2024.1.3}/src/egse/settings.yaml +2 -2
- {cgse_common-2024.1.0 → cgse_common-2024.1.3}/src/egse/bits.py +0 -0
- {cgse_common-2024.1.0 → cgse_common-2024.1.3}/src/egse/command.py +0 -0
- {cgse_common-2024.1.0 → cgse_common-2024.1.3}/src/egse/config.py +0 -0
- {cgse_common-2024.1.0 → cgse_common-2024.1.3}/src/egse/control.py +0 -0
- {cgse_common-2024.1.0 → cgse_common-2024.1.3}/src/egse/decorators.py +0 -0
- {cgse_common-2024.1.0 → cgse_common-2024.1.3}/src/egse/device.py +0 -0
- {cgse_common-2024.1.0 → cgse_common-2024.1.3}/src/egse/env.py +0 -0
- {cgse_common-2024.1.0 → cgse_common-2024.1.3}/src/egse/exceptions.py +0 -0
- {cgse_common-2024.1.0 → cgse_common-2024.1.3}/src/egse/mixin.py +0 -0
- {cgse_common-2024.1.0 → cgse_common-2024.1.3}/src/egse/monitoring.py +0 -0
- {cgse_common-2024.1.0 → cgse_common-2024.1.3}/src/egse/observer.py +0 -0
- {cgse_common-2024.1.0 → cgse_common-2024.1.3}/src/egse/obsid.py +0 -0
- {cgse_common-2024.1.0 → cgse_common-2024.1.3}/src/egse/persistence.py +0 -0
- {cgse_common-2024.1.0 → cgse_common-2024.1.3}/src/egse/plugin.py +0 -0
- {cgse_common-2024.1.0 → cgse_common-2024.1.3}/src/egse/process.py +0 -0
- {cgse_common-2024.1.0 → cgse_common-2024.1.3}/src/egse/protocol.py +0 -0
- {cgse_common-2024.1.0 → cgse_common-2024.1.3}/src/egse/proxy.py +0 -0
- {cgse_common-2024.1.0 → cgse_common-2024.1.3}/src/egse/reload.py +0 -0
- {cgse_common-2024.1.0 → cgse_common-2024.1.3}/src/egse/resource.py +0 -0
- {cgse_common-2024.1.0 → cgse_common-2024.1.3}/src/egse/services.py +0 -0
- {cgse_common-2024.1.0 → cgse_common-2024.1.3}/src/egse/services.yaml +0 -0
- {cgse_common-2024.1.0 → cgse_common-2024.1.3}/src/egse/settings.py +0 -0
- {cgse_common-2024.1.0 → cgse_common-2024.1.3}/src/egse/setup.py +0 -0
- {cgse_common-2024.1.0 → cgse_common-2024.1.3}/src/egse/state.py +0 -0
- {cgse_common-2024.1.0 → cgse_common-2024.1.3}/src/egse/system.py +0 -0
- {cgse_common-2024.1.0 → cgse_common-2024.1.3}/src/egse/version.py +0 -0
- {cgse_common-2024.1.0 → cgse_common-2024.1.3}/src/egse/zmq_ser.py +0 -0
|
@@ -1,17 +1,19 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: cgse-common
|
|
3
|
-
Version: 2024.1.
|
|
3
|
+
Version: 2024.1.3
|
|
4
4
|
Summary: Software framework to support hardware testing
|
|
5
|
-
Author
|
|
5
|
+
Author: IVS KU Leuven
|
|
6
|
+
Maintainer-email: Rik Huygen <rik.huygen@kuleuven.be>, Sara Regibo <sara.regibo@kuleuven.be>
|
|
6
7
|
License-Expression: MIT
|
|
7
8
|
Keywords: CGSE,Common-EGSE,hardware testing,software framework
|
|
8
|
-
Requires-Python: >=3.
|
|
9
|
+
Requires-Python: >=3.9
|
|
9
10
|
Requires-Dist: click
|
|
10
11
|
Requires-Dist: deepdiff
|
|
11
12
|
Requires-Dist: distro
|
|
12
13
|
Requires-Dist: gitpython
|
|
13
14
|
Requires-Dist: numpy==1.22.4
|
|
14
15
|
Requires-Dist: pandas
|
|
16
|
+
Requires-Dist: pip>=24.3.1
|
|
15
17
|
Requires-Dist: prometheus-client
|
|
16
18
|
Requires-Dist: psutil
|
|
17
19
|
Requires-Dist: pyyaml
|
|
@@ -27,9 +29,15 @@ Requires-Dist: pytest-cov; extra == 'test'
|
|
|
27
29
|
Requires-Dist: pytest-mock; extra == 'test'
|
|
28
30
|
Description-Content-Type: text/markdown
|
|
29
31
|
|
|
30
|
-
# Generic Functionality used in the PLATO Common-EGSE
|
|
31
32
|
|
|
32
|
-
|
|
33
|
+

|
|
34
|
+

|
|
35
|
+

|
|
36
|
+

|
|
37
|
+
|
|
38
|
+
# Generic Functionality used in the Common-EGSE
|
|
39
|
+
|
|
40
|
+
This package 'cgse-common' contains functionality that is used by all `cgse` sub-packages, but it is designed to be a stand-alone generic package that can be used also in any other project.
|
|
33
41
|
|
|
34
42
|
|
|
35
43
|
## Installation
|
|
@@ -1,6 +1,12 @@
|
|
|
1
|
-
# Generic Functionality used in the PLATO Common-EGSE
|
|
2
1
|
|
|
3
|
-
|
|
2
|
+

|
|
3
|
+

|
|
4
|
+

|
|
5
|
+

|
|
6
|
+
|
|
7
|
+
# Generic Functionality used in the Common-EGSE
|
|
8
|
+
|
|
9
|
+
This package 'cgse-common' contains functionality that is used by all `cgse` sub-packages, but it is designed to be a stand-alone generic package that can be used also in any other project.
|
|
4
10
|
|
|
5
11
|
|
|
6
12
|
## Installation
|
|
@@ -1,13 +1,16 @@
|
|
|
1
1
|
[project]
|
|
2
2
|
name = "cgse-common"
|
|
3
|
-
version = "2024.1.
|
|
3
|
+
version = "2024.1.3"
|
|
4
4
|
description = "Software framework to support hardware testing"
|
|
5
5
|
authors = [
|
|
6
|
+
{name = "IVS KU Leuven"}
|
|
7
|
+
]
|
|
8
|
+
maintainers = [
|
|
6
9
|
{name = "Rik Huygen", email = "rik.huygen@kuleuven.be"},
|
|
7
10
|
{name = "Sara Regibo", email = "sara.regibo@kuleuven.be"}
|
|
8
11
|
]
|
|
9
12
|
readme = {"file" = "README.md", "content-type" = "text/markdown"}
|
|
10
|
-
requires-python = ">=3.
|
|
13
|
+
requires-python = ">=3.9"
|
|
11
14
|
license = "MIT"
|
|
12
15
|
keywords = [
|
|
13
16
|
"CGSE",
|
|
@@ -20,8 +23,9 @@ dependencies = [
|
|
|
20
23
|
"deepdiff",
|
|
21
24
|
"distro",
|
|
22
25
|
"gitpython",
|
|
23
|
-
"numpy == 1.22.4",
|
|
24
|
-
"pandas",
|
|
26
|
+
"numpy == 1.22.4", # only used in setup
|
|
27
|
+
"pandas",
|
|
28
|
+
"pip>=24.3.1", # only used in setup
|
|
25
29
|
"prometheus-client",
|
|
26
30
|
"psutil",
|
|
27
31
|
"pyyaml",
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|