comparison 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
comparison
equal deleted inserted replaced
-1:000000000000 0:53ea2bc254e7
1 # -*- coding: utf-8 -*-
2 #
3 # NOTE: ONLY STANDARDLIB-IMPORTS IN THIS MODULE.
4 # ITS JUST FOR BOOTSTRAPPING WITH PYTHON2 and PYTHON3.
5 # NO `future`, `six`, ...
6 #
7
8 from __future__ import division, print_function, absolute_import
9
10
11 __version__ = "0.0.dev0"
12
13
14 __all__ = []