File: __init__.py

package info (click to toggle)
python-drizzle 2.1.1-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 203,192 kB
  • sloc: ansic: 6,927; python: 2,054; makefile: 128
file content (12 lines) | stat: -rw-r--r-- 313 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
"""
A package for combining dithered images into a single image
"""
from importlib.metadata import PackageNotFoundError, version

from drizzle import cdrizzle, resample, utils  # noqa: F401

try:
    __version__ = version(__name__)
except PackageNotFoundError:
    # package is not installed
    __version__ = ''