cgse-coordinates 2023.1.0__tar.gz → 2024.1.5__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.
- cgse_coordinates-2024.1.5/.gitignore +35 -0
- cgse_coordinates-2024.1.5/PKG-INFO +21 -0
- cgse_coordinates-2024.1.5/README.md +1 -0
- cgse_coordinates-2024.1.5/pyproject.toml +53 -0
- cgse_coordinates-2023.1.0/PKG-INFO +0 -9
- cgse_coordinates-2023.1.0/pyproject.toml +0 -30
- cgse_coordinates-2023.1.0/setup.cfg +0 -4
- cgse_coordinates-2023.1.0/src/cgse_coordinates.egg-info/PKG-INFO +0 -9
- cgse_coordinates-2023.1.0/src/cgse_coordinates.egg-info/SOURCES.txt +0 -17
- cgse_coordinates-2023.1.0/src/cgse_coordinates.egg-info/dependency_links.txt +0 -1
- cgse_coordinates-2023.1.0/src/cgse_coordinates.egg-info/entry_points.txt +0 -2
- cgse_coordinates-2023.1.0/src/cgse_coordinates.egg-info/requires.txt +0 -4
- cgse_coordinates-2023.1.0/src/cgse_coordinates.egg-info/top_level.txt +0 -1
- {cgse_coordinates-2023.1.0 → cgse_coordinates-2024.1.5}/src/egse/coordinates/__init__.py +0 -0
- {cgse_coordinates-2023.1.0 → cgse_coordinates-2024.1.5}/src/egse/coordinates/avoidance.py +0 -0
- {cgse_coordinates-2023.1.0 → cgse_coordinates-2024.1.5}/src/egse/coordinates/cslmodel.py +0 -0
- {cgse_coordinates-2023.1.0 → cgse_coordinates-2024.1.5}/src/egse/coordinates/laser_tracker_to_dict.py +0 -0
- {cgse_coordinates-2023.1.0 → cgse_coordinates-2024.1.5}/src/egse/coordinates/point.py +0 -0
- {cgse_coordinates-2023.1.0 → cgse_coordinates-2024.1.5}/src/egse/coordinates/pyplot.py +0 -0
- {cgse_coordinates-2023.1.0 → cgse_coordinates-2024.1.5}/src/egse/coordinates/referenceFrame.py +0 -0
- {cgse_coordinates-2023.1.0 → cgse_coordinates-2024.1.5}/src/egse/coordinates/refmodel.py +0 -0
- {cgse_coordinates-2023.1.0 → cgse_coordinates-2024.1.5}/src/egse/coordinates/rotationMatrix.py +0 -0
- {cgse_coordinates-2023.1.0 → cgse_coordinates-2024.1.5}/src/egse/coordinates/transform3d_addon.py +0 -0
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
# Python versions and environment
|
|
2
|
+
|
|
3
|
+
__pycache__
|
|
4
|
+
.python-version
|
|
5
|
+
.envrc
|
|
6
|
+
|
|
7
|
+
# Build systems
|
|
8
|
+
|
|
9
|
+
build
|
|
10
|
+
dist
|
|
11
|
+
**/*.egg-info
|
|
12
|
+
|
|
13
|
+
# Apple specific
|
|
14
|
+
|
|
15
|
+
.DS_Store
|
|
16
|
+
|
|
17
|
+
# Unit testing
|
|
18
|
+
|
|
19
|
+
.pytest_cache
|
|
20
|
+
.coverage
|
|
21
|
+
htmlcov
|
|
22
|
+
|
|
23
|
+
# Virtual environments
|
|
24
|
+
|
|
25
|
+
.env
|
|
26
|
+
.venv
|
|
27
|
+
venv
|
|
28
|
+
|
|
29
|
+
# PyCharm IDE
|
|
30
|
+
|
|
31
|
+
.idea
|
|
32
|
+
|
|
33
|
+
# Packaging
|
|
34
|
+
|
|
35
|
+
uv.lock
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: cgse-coordinates
|
|
3
|
+
Version: 2024.1.5
|
|
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
|
|
11
|
+
Requires-Dist: numpy==1.22.4
|
|
12
|
+
Requires-Dist: pandas>=1.5.1
|
|
13
|
+
Requires-Dist: pip>=24.3.1
|
|
14
|
+
Requires-Dist: transforms3d>=0.4.2
|
|
15
|
+
Provides-Extra: dev
|
|
16
|
+
Requires-Dist: pytest; extra == 'dev'
|
|
17
|
+
Requires-Dist: pytest-cov; extra == 'dev'
|
|
18
|
+
Requires-Dist: pytest-mock; extra == 'dev'
|
|
19
|
+
Description-Content-Type: text/markdown
|
|
20
|
+
|
|
21
|
+
# Reference Frames for the CGSE
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
# Reference Frames for the CGSE
|
|
@@ -0,0 +1,53 @@
|
|
|
1
|
+
[project]
|
|
2
|
+
name = "cgse-coordinates"
|
|
3
|
+
version = "2024.1.5"
|
|
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",
|
|
22
|
+
"numpy==1.22.4",
|
|
23
|
+
"pandas>=1.5.1",
|
|
24
|
+
"pip>=24.3.1",
|
|
25
|
+
"transforms3d>=0.4.2",
|
|
26
|
+
]
|
|
27
|
+
|
|
28
|
+
[project.optional-dependencies]
|
|
29
|
+
dev = ["pytest", "pytest-mock", "pytest-cov"]
|
|
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"
|
|
47
|
+
|
|
48
|
+
|
|
49
|
+
[dependency-groups]
|
|
50
|
+
dev = [
|
|
51
|
+
"pytest>=8.3.4",
|
|
52
|
+
"ruff>=0.9.0",
|
|
53
|
+
]
|
|
@@ -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,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 +0,0 @@
|
|
|
1
|
-
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
egse
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{cgse_coordinates-2023.1.0 → cgse_coordinates-2024.1.5}/src/egse/coordinates/referenceFrame.py
RENAMED
|
File without changes
|
|
File without changes
|
{cgse_coordinates-2023.1.0 → cgse_coordinates-2024.1.5}/src/egse/coordinates/rotationMatrix.py
RENAMED
|
File without changes
|
{cgse_coordinates-2023.1.0 → cgse_coordinates-2024.1.5}/src/egse/coordinates/transform3d_addon.py
RENAMED
|
File without changes
|