drizzle 2.1.1__cp314-cp314t-win_amd64.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.
Potentially problematic release.
This version of drizzle might be problematic. Click here for more details.
- drizzle/__init__.py +12 -0
- drizzle/cdrizzle.cp314t-win_amd64.pyd +0 -0
- drizzle/resample.py +707 -0
- drizzle/tests/__init__.py +0 -0
- drizzle/tests/helpers.py +221 -0
- drizzle/tests/test_cdrizzle.py +29 -0
- drizzle/tests/test_overlap_calc.py +286 -0
- drizzle/tests/test_resample.py +1350 -0
- drizzle/tests/test_utils.py +237 -0
- drizzle/util.py +34 -0
- drizzle/utils.py +285 -0
- drizzle-2.1.1.dist-info/METADATA +172 -0
- drizzle-2.1.1.dist-info/RECORD +16 -0
- drizzle-2.1.1.dist-info/WHEEL +5 -0
- drizzle-2.1.1.dist-info/licenses/LICENSE.rst +31 -0
- drizzle-2.1.1.dist-info/top_level.txt +1 -0
drizzle/__init__.py
ADDED
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
"""
|
|
2
|
+
A package for combining dithered images into a single image
|
|
3
|
+
"""
|
|
4
|
+
from importlib.metadata import PackageNotFoundError, version
|
|
5
|
+
|
|
6
|
+
from drizzle import cdrizzle, resample, utils # noqa: F401
|
|
7
|
+
|
|
8
|
+
try:
|
|
9
|
+
__version__ = version(__name__)
|
|
10
|
+
except PackageNotFoundError:
|
|
11
|
+
# package is not installed
|
|
12
|
+
__version__ = ''
|
|
Binary file
|