Mercurial > hgrepos > Python > libs > ConfigMix
diff mixconfig/__init__.py @ 0:53ea2bc254e7
Begin a package to abstract some of the important configuration handling stuff.
- My first package with a "setup.py" installer.
BUGS:
- licensing
| author | Franz Glasner <hg@dom66.de> |
|---|---|
| date | Mon, 07 Mar 2016 09:03:18 +0100 |
| parents | |
| children | f76d85ccc5b9 |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/mixconfig/__init__.py Mon Mar 07 09:03:18 2016 +0100 @@ -0,0 +1,14 @@ +# -*- coding: utf-8 -*- +# +# 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__ = []
