cgse-core 2023.1.1__tar.gz → 2024.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.
Files changed (22) hide show
  1. cgse_core-2024.1.0/.gitignore +20 -0
  2. cgse_core-2024.1.0/PKG-INFO +22 -0
  3. cgse_core-2024.1.0/pyproject.toml +59 -0
  4. cgse_core-2023.1.1/PKG-INFO +0 -23
  5. cgse_core-2023.1.1/pyproject.toml +0 -51
  6. {cgse_core-2023.1.1 → cgse_core-2024.1.0}/README.md +0 -0
  7. {cgse_core-2023.1.1 → cgse_core-2024.1.0}/src/egse/confman/__init__.py +0 -0
  8. {cgse_core-2023.1.1 → cgse_core-2024.1.0}/src/egse/confman/__main__.py +0 -0
  9. {cgse_core-2023.1.1 → cgse_core-2024.1.0}/src/egse/confman/confman.yaml +0 -0
  10. {cgse_core-2023.1.1 → cgse_core-2024.1.0}/src/egse/confman/confman_cs.py +0 -0
  11. {cgse_core-2023.1.1 → cgse_core-2024.1.0}/src/egse/logger/__init__.py +0 -0
  12. {cgse_core-2023.1.1 → cgse_core-2024.1.0}/src/egse/logger/__main__.py +0 -0
  13. {cgse_core-2023.1.1 → cgse_core-2024.1.0}/src/egse/logger/log_cs.py +0 -0
  14. {cgse_core-2023.1.1 → cgse_core-2024.1.0}/src/egse/procman/__init__.py +0 -0
  15. {cgse_core-2023.1.1 → cgse_core-2024.1.0}/src/egse/procman/procman.yaml +0 -0
  16. {cgse_core-2023.1.1 → cgse_core-2024.1.0}/src/egse/procman/procman_cs.py +0 -0
  17. {cgse_core-2023.1.1 → cgse_core-2024.1.0}/src/egse/storage/__init__.py +0 -0
  18. {cgse_core-2023.1.1 → cgse_core-2024.1.0}/src/egse/storage/__main__.py +0 -0
  19. {cgse_core-2023.1.1 → cgse_core-2024.1.0}/src/egse/storage/persistence.py +0 -0
  20. {cgse_core-2023.1.1 → cgse_core-2024.1.0}/src/egse/storage/storage.yaml +0 -0
  21. {cgse_core-2023.1.1 → cgse_core-2024.1.0}/src/egse/storage/storage_cs.py +0 -0
  22. {cgse_core-2023.1.1 → cgse_core-2024.1.0}/src/scripts/cgse.py +0 -0
@@ -0,0 +1,20 @@
1
+ .python-version
2
+ .envrc
3
+
4
+ build
5
+ dist
6
+
7
+ .DS_Store
8
+
9
+ __pycache__
10
+ .pytest_cache
11
+
12
+ .env
13
+ .venv
14
+ venv
15
+
16
+ .idea
17
+
18
+ **/*.egg-info
19
+
20
+ uv.lock
@@ -0,0 +1,22 @@
1
+ Metadata-Version: 2.4
2
+ Name: cgse-core
3
+ Version: 2024.1.0
4
+ Author-email: Rik Huygen <rik.huygen@kuleuven.be>, Sara Regibo <sara.regibo@kuleuven.be>
5
+ License-Expression: MIT
6
+ Keywords: CGSE,Common-EGSE,hardware testing,software framework
7
+ Requires-Python: >=3.9
8
+ Requires-Dist: apscheduler
9
+ Requires-Dist: cgse-common
10
+ Requires-Dist: click
11
+ Requires-Dist: gitpython
12
+ Requires-Dist: prometheus-client
13
+ Requires-Dist: pyzmq==23.2.1
14
+ Requires-Dist: rich
15
+ Provides-Extra: dev
16
+ Requires-Dist: pipdeptree; 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,59 @@
1
+ [project]
2
+ name = "cgse-core"
3
+ version = "2024.1.0"
4
+ authors = [
5
+ {name = "Rik Huygen", email = "rik.huygen@kuleuven.be"},
6
+ {name = "Sara Regibo", email = "sara.regibo@kuleuven.be"}
7
+ ]
8
+ readme = {"file" = "README.md", "content-type" = "text/markdown"}
9
+ requires-python = ">=3.9"
10
+ license = "MIT"
11
+ keywords = [
12
+ "CGSE",
13
+ "Common-EGSE",
14
+ "hardware testing",
15
+ "software framework"
16
+ ]
17
+ dependencies = [
18
+ "cgse-common",
19
+ "apscheduler",
20
+ "click",
21
+ "gitpython",
22
+ "prometheus-client",
23
+ "pyzmq == 23.2.1",
24
+ "rich",
25
+ ]
26
+
27
+ [project.optional-dependencies]
28
+ dev = ["pytest", "pytest-mock", "pytest-cov", "pipdeptree"]
29
+
30
+ [project.scripts]
31
+ log_cs = 'egse.logger.log_cs:cli'
32
+ sm_cs = 'egse.storage.storage_cs:cli'
33
+ cm_cs = 'egse.confman.confman_cs:cli'
34
+ pm_cs = 'egse.procman.procman_cs:cli'
35
+
36
+ cgse = 'scripts.cgse:cli'
37
+
38
+ [project.entry-points."cgse.version"]
39
+ cgse-core = 'egse'
40
+
41
+ [tool.hatch.build.targets.sdist]
42
+ exclude = [
43
+ "/tests",
44
+ "/pytest.ini",
45
+ "/.gitignore",
46
+ ]
47
+
48
+ [tool.hatch.build.targets.wheel]
49
+ packages = ["src/egse"]
50
+
51
+ [tool.ruff]
52
+ line-length = 120
53
+
54
+ [tool.ruff.lint]
55
+ extend-select = ["E501"]
56
+
57
+ [build-system]
58
+ requires = ["hatchling"]
59
+ build-backend = "hatchling.build"
@@ -1,23 +0,0 @@
1
- Metadata-Version: 2.1
2
- Name: cgse-core
3
- Version: 2023.1.1
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.6)
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.1"
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.6"
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