File: __init__.py

package info (click to toggle)
python-drizzle 2.2.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 203,404 kB
  • sloc: ansic: 8,489; python: 2,901; makefile: 128
file content (13 lines) | stat: -rw-r--r-- 314 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
"""
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__ = ""