comparison 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
comparison
equal deleted inserted replaced
4:f76d85ccc5b9 5:dc058099a4cb
1 # -*- coding: utf-8 -*-
2 r"""
3
4 :Author: Franz Glasner
5 :License: BSD License.
6 See LICENSE for details.
7
8 """
9 #
10 # NOTE: ONLY STANDARDLIB-IMPORTS IN THIS MODULE.
11 # ITS JUST FOR BOOTSTRAPPING WITH PYTHON2 and PYTHON3.
12 # NO `future`, `six`, ...
13 #
14
15 from __future__ import division, print_function, absolute_import
16
17
18 __version__ = "0.0.dev0"
19
20
21 __all__ = []