Mercurial > hgrepos > Python > libs > ConfigMix
view 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 source
# -*- 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__ = []
