16 lines
270 B
Python
16 lines
270 B
Python
"""Python Binding to FloatImg """
|
|
|
|
# FloatImg class, constants & static functions
|
|
from floatimg.image import (
|
|
GRAY,
|
|
RGB,
|
|
FloatImg,
|
|
create,
|
|
create_rgb,
|
|
create_from_dump,
|
|
create_from_png,
|
|
fileinfos,
|
|
)
|
|
|
|
__version__ = "0.0.1"
|