cgse-core 2023.1.0__tar.gz → 2024.1.4__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_core-2024.1.4/.gitignore +35 -0
- cgse_core-2024.1.4/PKG-INFO +22 -0
- cgse_core-2024.1.4/pyproject.toml +66 -0
- cgse_core-2023.1.0/PKG-INFO +0 -23
- cgse_core-2023.1.0/pyproject.toml +0 -51
- {cgse_core-2023.1.0 → cgse_core-2024.1.4}/README.md +0 -0
- {cgse_core-2023.1.0 → cgse_core-2024.1.4}/src/egse/confman/__init__.py +0 -0
- {cgse_core-2023.1.0 → cgse_core-2024.1.4}/src/egse/confman/__main__.py +0 -0
- {cgse_core-2023.1.0 → cgse_core-2024.1.4}/src/egse/confman/confman.yaml +0 -0
- {cgse_core-2023.1.0 → cgse_core-2024.1.4}/src/egse/confman/confman_cs.py +0 -0
- {cgse_core-2023.1.0 → cgse_core-2024.1.4}/src/egse/logger/__init__.py +0 -0
- {cgse_core-2023.1.0 → cgse_core-2024.1.4}/src/egse/logger/__main__.py +0 -0
- {cgse_core-2023.1.0 → cgse_core-2024.1.4}/src/egse/logger/log_cs.py +0 -0
- {cgse_core-2023.1.0 → cgse_core-2024.1.4}/src/egse/procman/__init__.py +0 -0
- {cgse_core-2023.1.0 → cgse_core-2024.1.4}/src/egse/procman/procman.yaml +0 -0
- {cgse_core-2023.1.0 → cgse_core-2024.1.4}/src/egse/procman/procman_cs.py +0 -0
- {cgse_core-2023.1.0 → cgse_core-2024.1.4}/src/egse/storage/__init__.py +0 -0
- {cgse_core-2023.1.0 → cgse_core-2024.1.4}/src/egse/storage/__main__.py +0 -0
- {cgse_core-2023.1.0 → cgse_core-2024.1.4}/src/egse/storage/persistence.py +0 -0
- {cgse_core-2023.1.0 → cgse_core-2024.1.4}/src/egse/storage/storage.yaml +0 -0
- {cgse_core-2023.1.0 → cgse_core-2024.1.4}/src/egse/storage/storage_cs.py +0 -0
- {cgse_core-2023.1.0 → cgse_core-2024.1.4}/src/scripts/cgse.py +0 -0
|
@@ -0,0 +1,35 @@
|
|
|
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
|
+
# Packaging
|
|
34
|
+
|
|
35
|
+
uv.lock
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: cgse-core
|
|
3
|
+
Version: 2024.1.4
|
|
4
|
+
Summary: Core services for the CGSE framework
|
|
5
|
+
Author-email: Rik Huygen <rik.huygen@kuleuven.be>, Sara Regibo <sara.regibo@kuleuven.be>
|
|
6
|
+
License-Expression: MIT
|
|
7
|
+
Keywords: CGSE,Common-EGSE,hardware testing,software framework
|
|
8
|
+
Requires-Python: >=3.9
|
|
9
|
+
Requires-Dist: apscheduler>=3.11.0
|
|
10
|
+
Requires-Dist: cgse-common
|
|
11
|
+
Requires-Dist: click>=8.1.8
|
|
12
|
+
Requires-Dist: gitpython>=3.1.44
|
|
13
|
+
Requires-Dist: prometheus-client>=0.21.1
|
|
14
|
+
Requires-Dist: pyzmq==23.2.1
|
|
15
|
+
Requires-Dist: rich>=13.9.4
|
|
16
|
+
Provides-Extra: dev
|
|
17
|
+
Requires-Dist: pytest; extra == 'dev'
|
|
18
|
+
Requires-Dist: pytest-cov; extra == 'dev'
|
|
19
|
+
Requires-Dist: pytest-mock; extra == 'dev'
|
|
20
|
+
Description-Content-Type: text/markdown
|
|
21
|
+
|
|
22
|
+
# The core services for the CGSE platform
|
|
@@ -0,0 +1,66 @@
|
|
|
1
|
+
[project]
|
|
2
|
+
name = "cgse-core"
|
|
3
|
+
version = "2024.1.4"
|
|
4
|
+
description = "Core services for the CGSE framework"
|
|
5
|
+
authors = [
|
|
6
|
+
{name = "Rik Huygen", email = "rik.huygen@kuleuven.be"},
|
|
7
|
+
{name = "Sara Regibo", email = "sara.regibo@kuleuven.be"}
|
|
8
|
+
]
|
|
9
|
+
readme = {"file" = "README.md", "content-type" = "text/markdown"}
|
|
10
|
+
requires-python = ">=3.9"
|
|
11
|
+
license = "MIT"
|
|
12
|
+
keywords = [
|
|
13
|
+
"CGSE",
|
|
14
|
+
"Common-EGSE",
|
|
15
|
+
"hardware testing",
|
|
16
|
+
"software framework"
|
|
17
|
+
]
|
|
18
|
+
dependencies = [
|
|
19
|
+
"cgse-common",
|
|
20
|
+
"apscheduler>=3.11.0",
|
|
21
|
+
"click>=8.1.8",
|
|
22
|
+
"gitpython>=3.1.44",
|
|
23
|
+
"prometheus-client>=0.21.1",
|
|
24
|
+
"pyzmq == 23.2.1",
|
|
25
|
+
"rich>=13.9.4",
|
|
26
|
+
]
|
|
27
|
+
|
|
28
|
+
[project.optional-dependencies]
|
|
29
|
+
dev = ["pytest", "pytest-mock", "pytest-cov"]
|
|
30
|
+
|
|
31
|
+
[project.scripts]
|
|
32
|
+
log_cs = 'egse.logger.log_cs:cli'
|
|
33
|
+
sm_cs = 'egse.storage.storage_cs:cli'
|
|
34
|
+
cm_cs = 'egse.confman.confman_cs:cli'
|
|
35
|
+
pm_cs = 'egse.procman.procman_cs:cli'
|
|
36
|
+
|
|
37
|
+
cgse = 'scripts.cgse:cli'
|
|
38
|
+
|
|
39
|
+
[project.entry-points."cgse.version"]
|
|
40
|
+
cgse-core = 'egse'
|
|
41
|
+
|
|
42
|
+
[tool.hatch.build.targets.sdist]
|
|
43
|
+
exclude = [
|
|
44
|
+
"/tests",
|
|
45
|
+
"/pytest.ini",
|
|
46
|
+
"/.gitignore",
|
|
47
|
+
]
|
|
48
|
+
|
|
49
|
+
[tool.hatch.build.targets.wheel]
|
|
50
|
+
packages = ["src/egse", "src/scripts"]
|
|
51
|
+
|
|
52
|
+
[tool.ruff]
|
|
53
|
+
line-length = 120
|
|
54
|
+
|
|
55
|
+
[tool.ruff.lint]
|
|
56
|
+
extend-select = ["E501"]
|
|
57
|
+
|
|
58
|
+
[build-system]
|
|
59
|
+
requires = ["hatchling"]
|
|
60
|
+
build-backend = "hatchling.build"
|
|
61
|
+
|
|
62
|
+
[dependency-groups]
|
|
63
|
+
dev = [
|
|
64
|
+
"pytest>=8.3.4",
|
|
65
|
+
"ruff>=0.9.0",
|
|
66
|
+
]
|
cgse_core-2023.1.0/PKG-INFO
DELETED
|
@@ -1,23 +0,0 @@
|
|
|
1
|
-
Metadata-Version: 2.1
|
|
2
|
-
Name: cgse-core
|
|
3
|
-
Version: 2023.1.0
|
|
4
|
-
Summary: Core services for the CGSE framework
|
|
5
|
-
Author: Rik Huygen
|
|
6
|
-
Author-email: rik.huygen@kuleuven.be
|
|
7
|
-
Requires-Python: >=3.8,<4.0
|
|
8
|
-
Classifier: Programming Language :: Python :: 3
|
|
9
|
-
Classifier: Programming Language :: Python :: 3.8
|
|
10
|
-
Classifier: Programming Language :: Python :: 3.9
|
|
11
|
-
Classifier: Programming Language :: Python :: 3.10
|
|
12
|
-
Classifier: Programming Language :: Python :: 3.11
|
|
13
|
-
Requires-Dist: apscheduler
|
|
14
|
-
Requires-Dist: cgse-common (==2023.1.4)
|
|
15
|
-
Requires-Dist: click
|
|
16
|
-
Requires-Dist: gitpython
|
|
17
|
-
Requires-Dist: prometheus-client
|
|
18
|
-
Requires-Dist: pyzmq
|
|
19
|
-
Requires-Dist: rich
|
|
20
|
-
Description-Content-Type: text/markdown
|
|
21
|
-
|
|
22
|
-
# The core services for the CGSE platform
|
|
23
|
-
|
|
@@ -1,51 +0,0 @@
|
|
|
1
|
-
[tool.poetry]
|
|
2
|
-
name = "cgse-core"
|
|
3
|
-
version = "2023.1.0"
|
|
4
|
-
description = "Core services for the CGSE framework"
|
|
5
|
-
authors = [
|
|
6
|
-
"Rik Huygen <rik.huygen@kuleuven.be>",
|
|
7
|
-
"Sara Regibo <sara.regibo@kuleuven.be>",
|
|
8
|
-
]
|
|
9
|
-
readme = "README.md"
|
|
10
|
-
packages = [
|
|
11
|
-
{ include = "egse", from = "src" },
|
|
12
|
-
{ include = "scripts", from = "src" },
|
|
13
|
-
]
|
|
14
|
-
|
|
15
|
-
[tool.poetry.dependencies]
|
|
16
|
-
python = "^3.8"
|
|
17
|
-
apscheduler = "*"
|
|
18
|
-
click = "*"
|
|
19
|
-
gitpython = "*"
|
|
20
|
-
prometheus-client = "*"
|
|
21
|
-
pyzmq = "*"
|
|
22
|
-
rich = "*"
|
|
23
|
-
|
|
24
|
-
# The following two lines should be used mutually exclusive. Use the development install of the package when you need
|
|
25
|
-
# the latest source from the repo, when publishing however, the explicit version shall always be used.
|
|
26
|
-
# cgse-common = {path = "../../libs/cgse-common", develop = true}
|
|
27
|
-
cgse-common = "2023.1.4"
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
[tool.poetry.group.test.dependencies]
|
|
31
|
-
pytest = "^7.4.2"
|
|
32
|
-
pytest-mock = "^3.11.1"
|
|
33
|
-
pytest-cov = "^4.1.0"
|
|
34
|
-
|
|
35
|
-
[tool.poetry.group.dev.dependencies]
|
|
36
|
-
pipdeptree = "^2.13.0"
|
|
37
|
-
|
|
38
|
-
[tool.poetry.plugins."cgse.version"]
|
|
39
|
-
cgse-core = 'egse'
|
|
40
|
-
|
|
41
|
-
[tool.poetry.scripts]
|
|
42
|
-
log_cs = 'egse.logger.log_cs:cli'
|
|
43
|
-
sm_cs = 'egse.storage.storage_cs:cli'
|
|
44
|
-
cm_cs = 'egse.confman.confman_cs:cli'
|
|
45
|
-
pm_cs = 'egse.procman.procman_cs:cli'
|
|
46
|
-
|
|
47
|
-
cgse = 'scripts.cgse:cli'
|
|
48
|
-
|
|
49
|
-
[build-system]
|
|
50
|
-
requires = ["poetry-core"]
|
|
51
|
-
build-backend = "poetry.core.masonry.api"
|
|
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
|