plato-spw 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.
@@ -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,15 @@
1
+ Metadata-Version: 2.4
2
+ Name: plato-spw
3
+ Version: 2024.1.3
4
+ Summary: SpaceWire implementation 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
9
+ Requires-Python: >=3.9
10
+ Requires-Dist: cgse-common
11
+ Requires-Dist: numpy
12
+ Provides-Extra: test
13
+ Requires-Dist: pytest; extra == 'test'
14
+ Requires-Dist: pytest-cov; extra == 'test'
15
+ Requires-Dist: pytest-mock; extra == 'test'
File without changes
@@ -0,0 +1,50 @@
1
+ [project]
2
+ name = "plato-spw"
3
+ version = "2024.1.3"
4
+ description = "SpaceWire implementation 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
+ ]
21
+ dependencies = [
22
+ "cgse-common",
23
+ "numpy",
24
+ ]
25
+
26
+ [project.optional-dependencies]
27
+ test = ["pytest", "pytest-mock", "pytest-cov"]
28
+
29
+ [project.entry-points."cgse.version"]
30
+ plato-spw = 'egse.plugins'
31
+
32
+ [tool.hatch.build.targets.sdist]
33
+ exclude = [
34
+ "/tests",
35
+ "/pytest.ini",
36
+ "/.gitignore",
37
+ ]
38
+
39
+ [tool.hatch.build.targets.wheel]
40
+ packages = ["src/egse", "src/scripts"]
41
+
42
+ [tool.ruff]
43
+ line-length = 120
44
+
45
+ [tool.ruff.lint]
46
+ extend-select = ["E501"]
47
+
48
+ [build-system]
49
+ requires = ["hatchling"]
50
+ build-backend = "hatchling.build"