cgse-coordinates 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 (23) hide show
  1. cgse_coordinates-2024.1.3/.gitignore +20 -0
  2. cgse_coordinates-2024.1.3/PKG-INFO +22 -0
  3. cgse_coordinates-2024.1.3/README.md +1 -0
  4. cgse_coordinates-2024.1.3/pyproject.toml +46 -0
  5. cgse_coordinates-2023.1.0/PKG-INFO +0 -9
  6. cgse_coordinates-2023.1.0/pyproject.toml +0 -30
  7. cgse_coordinates-2023.1.0/setup.cfg +0 -4
  8. cgse_coordinates-2023.1.0/src/cgse_coordinates.egg-info/PKG-INFO +0 -9
  9. cgse_coordinates-2023.1.0/src/cgse_coordinates.egg-info/SOURCES.txt +0 -17
  10. cgse_coordinates-2023.1.0/src/cgse_coordinates.egg-info/dependency_links.txt +0 -1
  11. cgse_coordinates-2023.1.0/src/cgse_coordinates.egg-info/entry_points.txt +0 -2
  12. cgse_coordinates-2023.1.0/src/cgse_coordinates.egg-info/requires.txt +0 -4
  13. cgse_coordinates-2023.1.0/src/cgse_coordinates.egg-info/top_level.txt +0 -1
  14. {cgse_coordinates-2023.1.0 → cgse_coordinates-2024.1.3}/src/egse/coordinates/__init__.py +0 -0
  15. {cgse_coordinates-2023.1.0 → cgse_coordinates-2024.1.3}/src/egse/coordinates/avoidance.py +0 -0
  16. {cgse_coordinates-2023.1.0 → cgse_coordinates-2024.1.3}/src/egse/coordinates/cslmodel.py +0 -0
  17. {cgse_coordinates-2023.1.0 → cgse_coordinates-2024.1.3}/src/egse/coordinates/laser_tracker_to_dict.py +0 -0
  18. {cgse_coordinates-2023.1.0 → cgse_coordinates-2024.1.3}/src/egse/coordinates/point.py +0 -0
  19. {cgse_coordinates-2023.1.0 → cgse_coordinates-2024.1.3}/src/egse/coordinates/pyplot.py +0 -0
  20. {cgse_coordinates-2023.1.0 → cgse_coordinates-2024.1.3}/src/egse/coordinates/referenceFrame.py +0 -0
  21. {cgse_coordinates-2023.1.0 → cgse_coordinates-2024.1.3}/src/egse/coordinates/refmodel.py +0 -0
  22. {cgse_coordinates-2023.1.0 → cgse_coordinates-2024.1.3}/src/egse/coordinates/rotationMatrix.py +0 -0
  23. {cgse_coordinates-2023.1.0 → cgse_coordinates-2024.1.3}/src/egse/coordinates/transform3d_addon.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-coordinates
3
+ Version: 2024.1.3
4
+ Summary: Reference Frames and Coordinate Transofrmations for CGSE
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,reference frames,software framework
8
+ Requires-Python: >=3.9
9
+ Requires-Dist: cgse-common
10
+ Requires-Dist: cgse-core>=2024.1.1
11
+ Requires-Dist: numpy
12
+ Requires-Dist: pandas
13
+ Requires-Dist: pip>=24.3.1
14
+ Requires-Dist: transforms3d
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
+ # Reference Frames for the CGSE
@@ -0,0 +1 @@
1
+ # Reference Frames for the CGSE
@@ -0,0 +1,46 @@
1
+ [project]
2
+ name = "cgse-coordinates"
3
+ version = "2024.1.3"
4
+ description = "Reference Frames and Coordinate Transofrmations for CGSE"
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
+ "reference frames",
18
+ ]
19
+ dependencies = [
20
+ "cgse-common",
21
+ "cgse-core>=2024.1.1",
22
+ "numpy",
23
+ "pandas",
24
+ "pip>=24.3.1",
25
+ "transforms3d",
26
+ ]
27
+
28
+ [project.optional-dependencies]
29
+ dev = ["pytest", "pytest-mock", "pytest-cov", "pipdeptree"]
30
+
31
+ [project.entry-points."cgse.version"]
32
+ cgse-core = 'egse'
33
+
34
+ [tool.hatch.build.targets.sdist]
35
+ exclude = [
36
+ "/tests",
37
+ "/pytest.ini",
38
+ "/.gitignore",
39
+ ]
40
+
41
+ [tool.hatch.build.targets.wheel]
42
+ packages = ["src/egse"]
43
+
44
+ [build-system]
45
+ requires = ["hatchling"]
46
+ build-backend = "hatchling.build"
@@ -1,9 +0,0 @@
1
- Metadata-Version: 2.1
2
- Name: cgse-coordinates
3
- Version: 2023.1.0
4
- Summary: Reference Frames and Coordinate Transofrmations for CGSE
5
- License: Common-EGSE Software License Agreement
6
- Requires-Dist: cgse-core
7
- Requires-Dist: numpy
8
- Requires-Dist: pandas
9
- Requires-Dist: transforms3d
@@ -1,30 +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.coordinates"]
8
- namespaces = true
9
-
10
- [tool.setuptools.package-data]
11
- egse = ["*.yaml"]
12
-
13
- [project]
14
- name = "cgse-coordinates"
15
- version = "2023.1.0"
16
- description = "Reference Frames and Coordinate Transofrmations for CGSE"
17
- license = { text = "Common-EGSE Software License Agreement" }
18
- dependencies = [
19
- "cgse-core", # should be cgse-common
20
- "numpy",
21
- "pandas",
22
- "transforms3d",
23
- ]
24
-
25
- [tool.poetry.group.dev.dependencies]
26
- pipdeptree = "^2.13.0"
27
- tomlkit = "^0.12.3"
28
-
29
- [project.entry-points."cgse.version"]
30
- cgse-coordinates = 'egse.plugins'
@@ -1,4 +0,0 @@
1
- [egg_info]
2
- tag_build =
3
- tag_date = 0
4
-
@@ -1,9 +0,0 @@
1
- Metadata-Version: 2.1
2
- Name: cgse-coordinates
3
- Version: 2023.1.0
4
- Summary: Reference Frames and Coordinate Transofrmations for CGSE
5
- License: Common-EGSE Software License Agreement
6
- Requires-Dist: cgse-core
7
- Requires-Dist: numpy
8
- Requires-Dist: pandas
9
- Requires-Dist: transforms3d
@@ -1,17 +0,0 @@
1
- pyproject.toml
2
- src/cgse_coordinates.egg-info/PKG-INFO
3
- src/cgse_coordinates.egg-info/SOURCES.txt
4
- src/cgse_coordinates.egg-info/dependency_links.txt
5
- src/cgse_coordinates.egg-info/entry_points.txt
6
- src/cgse_coordinates.egg-info/requires.txt
7
- src/cgse_coordinates.egg-info/top_level.txt
8
- src/egse/coordinates/__init__.py
9
- src/egse/coordinates/avoidance.py
10
- src/egse/coordinates/cslmodel.py
11
- src/egse/coordinates/laser_tracker_to_dict.py
12
- src/egse/coordinates/point.py
13
- src/egse/coordinates/pyplot.py
14
- src/egse/coordinates/referenceFrame.py
15
- src/egse/coordinates/refmodel.py
16
- src/egse/coordinates/rotationMatrix.py
17
- src/egse/coordinates/transform3d_addon.py
@@ -1,2 +0,0 @@
1
- [cgse.version]
2
- cgse-coordinates = egse.plugins
@@ -1,4 +0,0 @@
1
- cgse-core
2
- numpy
3
- pandas
4
- transforms3d