Mercurial > hgrepos > Python > libs > ConfigMix
diff 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 diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/configmix/__init__.py Tue Mar 08 20:11:17 2016 +0100 @@ -0,0 +1,21 @@ +# -*- 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__ = []
