├── .gitignore ├── LICENSE ├── README.md ├── configfy ├── __init__.py ├── configfile.py └── decorator.py ├── doc ├── another_config.ini ├── complete_example.ini ├── complete_example.py ├── configfy.ini ├── example.py ├── overhead.py └── yet_another_config.ini ├── requirements.txt ├── setup.py └── tests ├── README.md ├── __init__.py ├── context.py ├── simple_tests.py ├── test_config.ini └── test_config2.ini /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapa17/configfy/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapa17/configfy/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapa17/configfy/HEAD/README.md -------------------------------------------------------------------------------- /configfy/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapa17/configfy/HEAD/configfy/__init__.py -------------------------------------------------------------------------------- /configfy/configfile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapa17/configfy/HEAD/configfy/configfile.py -------------------------------------------------------------------------------- /configfy/decorator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapa17/configfy/HEAD/configfy/decorator.py -------------------------------------------------------------------------------- /doc/another_config.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapa17/configfy/HEAD/doc/another_config.ini -------------------------------------------------------------------------------- /doc/complete_example.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapa17/configfy/HEAD/doc/complete_example.ini -------------------------------------------------------------------------------- /doc/complete_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapa17/configfy/HEAD/doc/complete_example.py -------------------------------------------------------------------------------- /doc/configfy.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapa17/configfy/HEAD/doc/configfy.ini -------------------------------------------------------------------------------- /doc/example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapa17/configfy/HEAD/doc/example.py -------------------------------------------------------------------------------- /doc/overhead.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapa17/configfy/HEAD/doc/overhead.py -------------------------------------------------------------------------------- /doc/yet_another_config.ini: -------------------------------------------------------------------------------- 1 | [global] 2 | msg = 'Goodby!' 3 | kw_args = 42 4 | -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | numpy==1.13.3 2 | setuptools==39.2.0 3 | -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapa17/configfy/HEAD/setup.py -------------------------------------------------------------------------------- /tests/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapa17/configfy/HEAD/tests/README.md -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/context.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapa17/configfy/HEAD/tests/context.py -------------------------------------------------------------------------------- /tests/simple_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapa17/configfy/HEAD/tests/simple_tests.py -------------------------------------------------------------------------------- /tests/test_config.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapa17/configfy/HEAD/tests/test_config.ini -------------------------------------------------------------------------------- /tests/test_config2.ini: -------------------------------------------------------------------------------- 1 | [global] 2 | adder2_offset = 100 --------------------------------------------------------------------------------