view configmix/__init__.py @ 5:dc058099a4cb

Renamed the project from "MixConfig" to "ConfigMix"
author Franz Glasner <hg@dom66.de>
date Tue, 08 Mar 2016 20:11:17 +0100
parents mixconfig/__init__.py@f76d85ccc5b9
children 7090c295c940
line wrap: on
line source

# -*- coding: utf-8 -*-
r"""

:Author:   Franz Glasner
:License:  BSD License.
           See LICENSE for details.

"""
#
# NOTE: ONLY STANDARDLIB-IMPORTS IN THIS MODULE.
#       ITS JUST FOR BOOTSTRAPPING WITH PYTHON2 and PYTHON3.
#       NO `future`, `six`, ...
#

from __future__ import division, print_function, absolute_import


__version__ = "0.0.dev0"


__all__ = []