├── .bumpversion.cfg ├── .gitignore ├── .travis.yml ├── CHANGELOG ├── LICENSE ├── README.rst ├── envcfg ├── __init__.py ├── _hook.py ├── json │ └── __init__.py ├── raw │ └── __init__.py └── smart │ └── __init__.py ├── setup.cfg ├── setup.py ├── tests ├── conftest.py ├── test_json.py ├── test_raw.py └── test_smart.py └── tox.ini /.bumpversion.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyseek/python-envcfg/HEAD/.bumpversion.cfg -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyseek/python-envcfg/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyseek/python-envcfg/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyseek/python-envcfg/HEAD/CHANGELOG -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyseek/python-envcfg/HEAD/LICENSE -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyseek/python-envcfg/HEAD/README.rst -------------------------------------------------------------------------------- /envcfg/__init__.py: -------------------------------------------------------------------------------- 1 | __version__ = '0.2.0' 2 | -------------------------------------------------------------------------------- /envcfg/_hook.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyseek/python-envcfg/HEAD/envcfg/_hook.py -------------------------------------------------------------------------------- /envcfg/json/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyseek/python-envcfg/HEAD/envcfg/json/__init__.py -------------------------------------------------------------------------------- /envcfg/raw/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyseek/python-envcfg/HEAD/envcfg/raw/__init__.py -------------------------------------------------------------------------------- /envcfg/smart/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyseek/python-envcfg/HEAD/envcfg/smart/__init__.py -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyseek/python-envcfg/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyseek/python-envcfg/HEAD/setup.py -------------------------------------------------------------------------------- /tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyseek/python-envcfg/HEAD/tests/conftest.py -------------------------------------------------------------------------------- /tests/test_json.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyseek/python-envcfg/HEAD/tests/test_json.py -------------------------------------------------------------------------------- /tests/test_raw.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyseek/python-envcfg/HEAD/tests/test_raw.py -------------------------------------------------------------------------------- /tests/test_smart.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyseek/python-envcfg/HEAD/tests/test_smart.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyseek/python-envcfg/HEAD/tox.ini --------------------------------------------------------------------------------