cgse-core 2023.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.
Files changed (22) hide show
  1. cgse_core-2024.1.3/.gitignore +20 -0
  2. cgse_core-2024.1.3/PKG-INFO +23 -0
  3. cgse_core-2024.1.3/pyproject.toml +60 -0
  4. cgse_core-2023.1.0/PKG-INFO +0 -23
  5. cgse_core-2023.1.0/pyproject.toml +0 -51
  6. {cgse_core-2023.1.0 → cgse_core-2024.1.3}/README.md +0 -0
  7. {cgse_core-2023.1.0 → cgse_core-2024.1.3}/src/egse/confman/__init__.py +0 -0
  8. {cgse_core-2023.1.0 → cgse_core-2024.1.3}/src/egse/confman/__main__.py +0 -0
  9. {cgse_core-2023.1.0 → cgse_core-2024.1.3}/src/egse/confman/confman.yaml +0 -0
  10. {cgse_core-2023.1.0 → cgse_core-2024.1.3}/src/egse/confman/confman_cs.py +0 -0
  11. {cgse_core-2023.1.0 → cgse_core-2024.1.3}/src/egse/logger/__init__.py +0 -0
  12. {cgse_core-2023.1.0 → cgse_core-2024.1.3}/src/egse/logger/__main__.py +0 -0
  13. {cgse_core-2023.1.0 → cgse_core-2024.1.3}/src/egse/logger/log_cs.py +0 -0
  14. {cgse_core-2023.1.0 → cgse_core-2024.1.3}/src/egse/procman/__init__.py +0 -0
  15. {cgse_core-2023.1.0 → cgse_core-2024.1.3}/src/egse/procman/procman.yaml +0 -0
  16. {cgse_core-2023.1.0 → cgse_core-2024.1.3}/src/egse/procman/procman_cs.py +0 -0
  17. {cgse_core-2023.1.0 → cgse_core-2024.1.3}/src/egse/storage/__init__.py +0 -0
  18. {cgse_core-2023.1.0 → cgse_core-2024.1.3}/src/egse/storage/__main__.py +0 -0
  19. {cgse_core-2023.1.0 → cgse_core-2024.1.3}/src/egse/storage/persistence.py +0 -0
  20. {cgse_core-2023.1.0 → cgse_core-2024.1.3}/src/egse/storage/storage.yaml +0 -0
  21. {cgse_core-2023.1.0 → cgse_core-2024.1.3}/src/egse/storage/storage_cs.py +0 -0
  22. {cgse_core-2023.1.0 → cgse_core-2024.1.3}/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,23 @@
1
+ Metadata-Version: 2.4
2
+ Name: cgse-core
3
+ Version: 2024.1.3
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
10
+ Requires-Dist: cgse-common
11
+ Requires-Dist: click
12
+ Requires-Dist: gitpython
13
+ Requires-Dist: prometheus-client
14
+ Requires-Dist: pyzmq==23.2.1
15
+ Requires-Dist: rich
16
+ Provides-Extra: dev
17
+ Requires-Dist: pipdeptree; extra == 'dev'
18
+ Requires-Dist: pytest; extra == 'dev'
19
+ Requires-Dist: pytest-cov; extra == 'dev'
20
+ Requires-Dist: pytest-mock; extra == 'dev'
21
+ Description-Content-Type: text/markdown
22
+
23
+ # The core services for the CGSE platform
@@ -0,0 +1,60 @@
1
+ [project]
2
+ name = "cgse-core"
3
+ version = "2024.1.3"
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",
21
+ "click",
22
+ "gitpython",
23
+ "prometheus-client",
24
+ "pyzmq == 23.2.1",
25
+ "rich",
26
+ ]
27
+
28
+ [project.optional-dependencies]
29
+ dev = ["pytest", "pytest-mock", "pytest-cov", "pipdeptree"]
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"
@@ -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