pywal/pywal/__init__.py
2017-07-23 10:57:33 +10:00

29 lines
559 B
Python

"""
'||
... ... .... ... ... ... ... .... ||
||' || '|. | || || | '' .|| ||
|| | '|.| ||| ||| .|' || ||
||...' '| | | '|..'|' .||.
|| .. |
'''' ''
Created by Dylan Araps.
"""
from .settings import __version__
from . import colors
from . import export
from . import image
from . import reload
from . import sequences
from . import wallpaper
__all__ = [
"__version__",
"colors",
"export",
"image",
"reload",
"sequences",
"wallpaper",
]