10 lines
262 B
Python
10 lines
262 B
Python
from __future__ import unicode_literals
|
|
|
|
from .classes import ( # NOQA
|
|
BaseTransformation, TransformationResize, TransformationRotate,
|
|
TransformationZoom
|
|
)
|
|
from .runtime import converter_class # NOQA
|
|
|
|
default_app_config = 'converter.apps.ConverterApp'
|