#!/usr/bin/env python
# -*- coding: utf-8 -*-

""" Another Python Logging Module. Command line Dye. Pretty Print (and logging) for Python """

import sys
sys.path.append('../clidye')


from clidye import main

if __name__ == '__main__':
    main.run()