qpoint 1.13.0__cp313-cp313-macosx_10_13_universal2.whl
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.
- qpoint/__init__.py +13 -0
- qpoint/_libqpoint.py +1286 -0
- qpoint/_version.py +34 -0
- qpoint/libqpoint.cpython-313-darwin.so +0 -0
- qpoint/qmap_class.py +1378 -0
- qpoint/qpoint_class.py +1974 -0
- qpoint/tools.py +35 -0
- qpoint-1.13.0.dist-info/METADATA +95 -0
- qpoint-1.13.0.dist-info/RECORD +12 -0
- qpoint-1.13.0.dist-info/WHEEL +6 -0
- qpoint-1.13.0.dist-info/licenses/LICENSE +21 -0
- qpoint-1.13.0.dist-info/top_level.txt +1 -0
qpoint/__init__.py
ADDED
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
"""A lightweight quaternion-based library for efficient telescope pointing."""
|
|
2
|
+
|
|
3
|
+
from ._version import __version__
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
def version():
|
|
7
|
+
"""Print version string"""
|
|
8
|
+
return __version__
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
from . import tools
|
|
12
|
+
from .qpoint_class import *
|
|
13
|
+
from .qmap_class import *
|