symetrie-hexapod 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.
- symetrie_hexapod-2024.1.3/.gitignore +20 -0
- symetrie_hexapod-2024.1.3/PKG-INFO +21 -0
- symetrie_hexapod-2024.1.3/README.md +1 -0
- symetrie_hexapod-2024.1.3/pyproject.toml +62 -0
- symetrie_hexapod-2023.1.0/PKG-INFO +0 -10
- symetrie_hexapod-2023.1.0/pyproject.toml +0 -36
- symetrie_hexapod-2023.1.0/setup.cfg +0 -4
- symetrie_hexapod-2023.1.0/src/symetrie_hexapod.egg-info/PKG-INFO +0 -10
- symetrie_hexapod-2023.1.0/src/symetrie_hexapod.egg-info/SOURCES.txt +0 -27
- symetrie_hexapod-2023.1.0/src/symetrie_hexapod.egg-info/dependency_links.txt +0 -1
- symetrie_hexapod-2023.1.0/src/symetrie_hexapod.egg-info/entry_points.txt +0 -11
- symetrie_hexapod-2023.1.0/src/symetrie_hexapod.egg-info/requires.txt +0 -5
- symetrie_hexapod-2023.1.0/src/symetrie_hexapod.egg-info/top_level.txt +0 -1
- {symetrie_hexapod-2023.1.0 → symetrie_hexapod-2024.1.3}/src/egse/hexapod/__init__.py +0 -0
- {symetrie_hexapod-2023.1.0 → symetrie_hexapod-2024.1.3}/src/egse/hexapod/symetrie/__init__.py +0 -0
- {symetrie_hexapod-2023.1.0 → symetrie_hexapod-2024.1.3}/src/egse/hexapod/symetrie/alpha.py +0 -0
- {symetrie_hexapod-2023.1.0 → symetrie_hexapod-2024.1.3}/src/egse/hexapod/symetrie/dynalpha.py +0 -0
- {symetrie_hexapod-2023.1.0 → symetrie_hexapod-2024.1.3}/src/egse/hexapod/symetrie/hexapod_ui.py +0 -0
- {symetrie_hexapod-2023.1.0 → symetrie_hexapod-2024.1.3}/src/egse/hexapod/symetrie/pmac.py +0 -0
- {symetrie_hexapod-2023.1.0 → symetrie_hexapod-2024.1.3}/src/egse/hexapod/symetrie/pmac_regex.py +0 -0
- {symetrie_hexapod-2023.1.0 → symetrie_hexapod-2024.1.3}/src/egse/hexapod/symetrie/puna.py +0 -0
- {symetrie_hexapod-2023.1.0 → symetrie_hexapod-2024.1.3}/src/egse/hexapod/symetrie/puna.yaml +0 -0
- {symetrie_hexapod-2023.1.0 → symetrie_hexapod-2024.1.3}/src/egse/hexapod/symetrie/puna_cs.py +0 -0
- {symetrie_hexapod-2023.1.0 → symetrie_hexapod-2024.1.3}/src/egse/hexapod/symetrie/puna_protocol.py +0 -0
- {symetrie_hexapod-2023.1.0 → symetrie_hexapod-2024.1.3}/src/egse/hexapod/symetrie/puna_ui.py +0 -0
- {symetrie_hexapod-2023.1.0 → symetrie_hexapod-2024.1.3}/src/egse/hexapod/symetrie/punaplus.py +0 -0
- {symetrie_hexapod-2023.1.0 → symetrie_hexapod-2024.1.3}/src/egse/hexapod/symetrie/zonda.py +0 -0
- {symetrie_hexapod-2023.1.0 → symetrie_hexapod-2024.1.3}/src/egse/hexapod/symetrie/zonda.yaml +0 -0
- {symetrie_hexapod-2023.1.0 → symetrie_hexapod-2024.1.3}/src/egse/hexapod/symetrie/zonda_cs.py +0 -0
- {symetrie_hexapod-2023.1.0 → symetrie_hexapod-2024.1.3}/src/egse/hexapod/symetrie/zonda_devif.py +0 -0
- {symetrie_hexapod-2023.1.0 → symetrie_hexapod-2024.1.3}/src/egse/hexapod/symetrie/zonda_protocol.py +0 -0
- {symetrie_hexapod-2023.1.0 → symetrie_hexapod-2024.1.3}/src/egse/hexapod/symetrie/zonda_ui.py +0 -0
- {symetrie_hexapod-2023.1.0 → symetrie_hexapod-2024.1.3}/src/scripts/cgse_service_plugins.py +0 -0
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: symetrie-hexapod
|
|
3
|
+
Version: 2024.1.3
|
|
4
|
+
Summary: Symetrie Hexapod 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: cgse-coordinates
|
|
12
|
+
Requires-Dist: cgse-core
|
|
13
|
+
Requires-Dist: cgse-gui
|
|
14
|
+
Requires-Dist: pyqt5
|
|
15
|
+
Provides-Extra: test
|
|
16
|
+
Requires-Dist: pytest; extra == 'test'
|
|
17
|
+
Requires-Dist: pytest-cov; extra == 'test'
|
|
18
|
+
Requires-Dist: pytest-mock; extra == 'test'
|
|
19
|
+
Description-Content-Type: text/markdown
|
|
20
|
+
|
|
21
|
+
# Drivers for the Symétrie Hexapods
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
# Drivers for the Symétrie Hexapods
|
|
@@ -0,0 +1,62 @@
|
|
|
1
|
+
[project]
|
|
2
|
+
name = "symetrie-hexapod"
|
|
3
|
+
version = "2024.1.3"
|
|
4
|
+
description = "Symetrie Hexapod 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
|
+
"cgse-core",
|
|
24
|
+
"cgse-gui",
|
|
25
|
+
"cgse-coordinates",
|
|
26
|
+
"PyQt5",
|
|
27
|
+
]
|
|
28
|
+
|
|
29
|
+
[project.optional-dependencies]
|
|
30
|
+
test = ["pytest", "pytest-mock", "pytest-cov"]
|
|
31
|
+
|
|
32
|
+
[project.scripts]
|
|
33
|
+
puna_cs = 'egse.hexapod.symetrie.puna_cs:cli'
|
|
34
|
+
|
|
35
|
+
[project.gui-scripts]
|
|
36
|
+
puna_ui = "egse.hexapod.symetrie.puna_ui:main"
|
|
37
|
+
|
|
38
|
+
[project.entry-points."cgse.version"]
|
|
39
|
+
symetrie-hexapod = 'egse.plugins'
|
|
40
|
+
|
|
41
|
+
[project.entry-points."cgse.service.plugins"]
|
|
42
|
+
puna_cs = 'scripts.cgse_service_plugins:puna_cs'
|
|
43
|
+
|
|
44
|
+
[tool.hatch.build.targets.sdist]
|
|
45
|
+
exclude = [
|
|
46
|
+
"/tests",
|
|
47
|
+
"/pytest.ini",
|
|
48
|
+
"/.gitignore",
|
|
49
|
+
]
|
|
50
|
+
|
|
51
|
+
[tool.hatch.build.targets.wheel]
|
|
52
|
+
packages = ["src/egse", "src/scripts"]
|
|
53
|
+
|
|
54
|
+
[tool.ruff]
|
|
55
|
+
line-length = 120
|
|
56
|
+
|
|
57
|
+
[tool.ruff.lint]
|
|
58
|
+
extend-select = ["E501"]
|
|
59
|
+
|
|
60
|
+
[build-system]
|
|
61
|
+
requires = ["hatchling"]
|
|
62
|
+
build-backend = "hatchling.build"
|
|
@@ -1,10 +0,0 @@
|
|
|
1
|
-
Metadata-Version: 2.1
|
|
2
|
-
Name: symetrie-hexapod
|
|
3
|
-
Version: 2023.1.0
|
|
4
|
-
Summary: Symetrie Hexapod implementation for CGSE
|
|
5
|
-
License: Common-EGSE Software License Agreement
|
|
6
|
-
Requires-Dist: cgse-common
|
|
7
|
-
Requires-Dist: cgse-core
|
|
8
|
-
Requires-Dist: cgse-gui
|
|
9
|
-
Requires-Dist: cgse-coordinates
|
|
10
|
-
Requires-Dist: PyQt5
|
|
@@ -1,36 +0,0 @@
|
|
|
1
|
-
[build-system]
|
|
2
|
-
requires = ["setuptools", "setuptools-scm"]
|
|
3
|
-
build-backend = "setuptools.build_meta"
|
|
4
|
-
|
|
5
|
-
[tool.setuptools.packages.find]
|
|
6
|
-
where = ["src"]
|
|
7
|
-
include = ["egse", "egse.hexapod.symetrie"]
|
|
8
|
-
namespaces = true
|
|
9
|
-
|
|
10
|
-
[tool.setuptools.package-data]
|
|
11
|
-
egse = ["*.yaml"]
|
|
12
|
-
|
|
13
|
-
[project]
|
|
14
|
-
name = "symetrie-hexapod"
|
|
15
|
-
version = "2023.1.0"
|
|
16
|
-
description = "Symetrie Hexapod implementation for CGSE"
|
|
17
|
-
license = { text = "Common-EGSE Software License Agreement" }
|
|
18
|
-
dependencies = [
|
|
19
|
-
"cgse-common",
|
|
20
|
-
"cgse-core",
|
|
21
|
-
"cgse-gui",
|
|
22
|
-
"cgse-coordinates",
|
|
23
|
-
"PyQt5",
|
|
24
|
-
]
|
|
25
|
-
|
|
26
|
-
[project.scripts]
|
|
27
|
-
puna_cs = 'egse.hexapod.symetrie.puna_cs:cli'
|
|
28
|
-
|
|
29
|
-
[project.gui-scripts]
|
|
30
|
-
puna_ui = "egse.hexapod.symetrie.puna_ui:main"
|
|
31
|
-
|
|
32
|
-
[project.entry-points."cgse.version"]
|
|
33
|
-
symetrie-hexapod = 'egse.plugins'
|
|
34
|
-
|
|
35
|
-
[project.entry-points."cgse.service.plugins"]
|
|
36
|
-
puna_cs = 'scripts.cgse_service_plugins:puna_cs'
|
|
@@ -1,10 +0,0 @@
|
|
|
1
|
-
Metadata-Version: 2.1
|
|
2
|
-
Name: symetrie-hexapod
|
|
3
|
-
Version: 2023.1.0
|
|
4
|
-
Summary: Symetrie Hexapod implementation for CGSE
|
|
5
|
-
License: Common-EGSE Software License Agreement
|
|
6
|
-
Requires-Dist: cgse-common
|
|
7
|
-
Requires-Dist: cgse-core
|
|
8
|
-
Requires-Dist: cgse-gui
|
|
9
|
-
Requires-Dist: cgse-coordinates
|
|
10
|
-
Requires-Dist: PyQt5
|
|
@@ -1,27 +0,0 @@
|
|
|
1
|
-
pyproject.toml
|
|
2
|
-
src/egse/hexapod/__init__.py
|
|
3
|
-
src/egse/hexapod/symetrie/__init__.py
|
|
4
|
-
src/egse/hexapod/symetrie/alpha.py
|
|
5
|
-
src/egse/hexapod/symetrie/dynalpha.py
|
|
6
|
-
src/egse/hexapod/symetrie/hexapod_ui.py
|
|
7
|
-
src/egse/hexapod/symetrie/pmac.py
|
|
8
|
-
src/egse/hexapod/symetrie/pmac_regex.py
|
|
9
|
-
src/egse/hexapod/symetrie/puna.py
|
|
10
|
-
src/egse/hexapod/symetrie/puna.yaml
|
|
11
|
-
src/egse/hexapod/symetrie/puna_cs.py
|
|
12
|
-
src/egse/hexapod/symetrie/puna_protocol.py
|
|
13
|
-
src/egse/hexapod/symetrie/puna_ui.py
|
|
14
|
-
src/egse/hexapod/symetrie/punaplus.py
|
|
15
|
-
src/egse/hexapod/symetrie/zonda.py
|
|
16
|
-
src/egse/hexapod/symetrie/zonda.yaml
|
|
17
|
-
src/egse/hexapod/symetrie/zonda_cs.py
|
|
18
|
-
src/egse/hexapod/symetrie/zonda_devif.py
|
|
19
|
-
src/egse/hexapod/symetrie/zonda_protocol.py
|
|
20
|
-
src/egse/hexapod/symetrie/zonda_ui.py
|
|
21
|
-
src/scripts/cgse_service_plugins.py
|
|
22
|
-
src/symetrie_hexapod.egg-info/PKG-INFO
|
|
23
|
-
src/symetrie_hexapod.egg-info/SOURCES.txt
|
|
24
|
-
src/symetrie_hexapod.egg-info/dependency_links.txt
|
|
25
|
-
src/symetrie_hexapod.egg-info/entry_points.txt
|
|
26
|
-
src/symetrie_hexapod.egg-info/requires.txt
|
|
27
|
-
src/symetrie_hexapod.egg-info/top_level.txt
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
|
|
@@ -1,11 +0,0 @@
|
|
|
1
|
-
[cgse.service.plugins]
|
|
2
|
-
puna_cs = scripts.cgse_service_plugins:puna_cs
|
|
3
|
-
|
|
4
|
-
[cgse.version]
|
|
5
|
-
symetrie-hexapod = egse.plugins
|
|
6
|
-
|
|
7
|
-
[console_scripts]
|
|
8
|
-
puna_cs = egse.hexapod.symetrie.puna_cs:cli
|
|
9
|
-
|
|
10
|
-
[gui_scripts]
|
|
11
|
-
puna_ui = egse.hexapod.symetrie.puna_ui:main
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
egse
|
|
File without changes
|
{symetrie_hexapod-2023.1.0 → symetrie_hexapod-2024.1.3}/src/egse/hexapod/symetrie/__init__.py
RENAMED
|
File without changes
|
|
File without changes
|
{symetrie_hexapod-2023.1.0 → symetrie_hexapod-2024.1.3}/src/egse/hexapod/symetrie/dynalpha.py
RENAMED
|
File without changes
|
{symetrie_hexapod-2023.1.0 → symetrie_hexapod-2024.1.3}/src/egse/hexapod/symetrie/hexapod_ui.py
RENAMED
|
File without changes
|
|
File without changes
|
{symetrie_hexapod-2023.1.0 → symetrie_hexapod-2024.1.3}/src/egse/hexapod/symetrie/pmac_regex.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
{symetrie_hexapod-2023.1.0 → symetrie_hexapod-2024.1.3}/src/egse/hexapod/symetrie/puna_cs.py
RENAMED
|
File without changes
|
{symetrie_hexapod-2023.1.0 → symetrie_hexapod-2024.1.3}/src/egse/hexapod/symetrie/puna_protocol.py
RENAMED
|
File without changes
|
{symetrie_hexapod-2023.1.0 → symetrie_hexapod-2024.1.3}/src/egse/hexapod/symetrie/puna_ui.py
RENAMED
|
File without changes
|
{symetrie_hexapod-2023.1.0 → symetrie_hexapod-2024.1.3}/src/egse/hexapod/symetrie/punaplus.py
RENAMED
|
File without changes
|
|
File without changes
|
{symetrie_hexapod-2023.1.0 → symetrie_hexapod-2024.1.3}/src/egse/hexapod/symetrie/zonda.yaml
RENAMED
|
File without changes
|
{symetrie_hexapod-2023.1.0 → symetrie_hexapod-2024.1.3}/src/egse/hexapod/symetrie/zonda_cs.py
RENAMED
|
File without changes
|
{symetrie_hexapod-2023.1.0 → symetrie_hexapod-2024.1.3}/src/egse/hexapod/symetrie/zonda_devif.py
RENAMED
|
File without changes
|
{symetrie_hexapod-2023.1.0 → symetrie_hexapod-2024.1.3}/src/egse/hexapod/symetrie/zonda_protocol.py
RENAMED
|
File without changes
|
{symetrie_hexapod-2023.1.0 → symetrie_hexapod-2024.1.3}/src/egse/hexapod/symetrie/zonda_ui.py
RENAMED
|
File without changes
|
|
File without changes
|