Jan Petykiewicz 50e3822eac Create folder-based module and use VERSION file
use VERSION to avoid importing the module before it's installed
2019-09-30 23:14:13 -07:00

17 lines
355 B
Python

"""
Module for rasterizing polygons, with float-precision anti-aliasing on
a non-uniform rectangular grid.
See the documentation for float_raster.raster(...) for details.
"""
import pathlib
from .float_raster import *
__author__ = 'Jan Petykiewicz'
with open(pathlib.Path(__file__).parent / 'VERSION', 'r') as f:
__version__ = f.read().strip()