├── .ci └── README ├── .git-pre-commit ├── .gitignore ├── CREDITS ├── HISTORY.rst ├── LICENSE ├── MANIFEST.in ├── Makefile ├── README.rst ├── TODO ├── appveyor.yml ├── confix.py ├── docs ├── Makefile ├── README ├── _static │ ├── copybutton.js │ ├── favicon.ico │ ├── logo.png │ └── sidebar.js ├── _template │ ├── globaltoc.html │ ├── indexcontent.html │ ├── indexsidebar.html │ └── page.html ├── _themes │ └── pydoctheme │ │ ├── static │ │ └── pydoctheme.css │ │ └── theme.conf ├── conf.py ├── index.rst └── make.bat ├── setup.py ├── tests.py └── tox.ini /.ci/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giampaolo/confix/HEAD/.ci/README -------------------------------------------------------------------------------- /.git-pre-commit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giampaolo/confix/HEAD/.git-pre-commit -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giampaolo/confix/HEAD/.gitignore -------------------------------------------------------------------------------- /CREDITS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giampaolo/confix/HEAD/CREDITS -------------------------------------------------------------------------------- /HISTORY.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giampaolo/confix/HEAD/HISTORY.rst -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giampaolo/confix/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giampaolo/confix/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giampaolo/confix/HEAD/Makefile -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giampaolo/confix/HEAD/README.rst -------------------------------------------------------------------------------- /TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giampaolo/confix/HEAD/TODO -------------------------------------------------------------------------------- /appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giampaolo/confix/HEAD/appveyor.yml -------------------------------------------------------------------------------- /confix.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giampaolo/confix/HEAD/confix.py -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giampaolo/confix/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giampaolo/confix/HEAD/docs/README -------------------------------------------------------------------------------- /docs/_static/copybutton.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giampaolo/confix/HEAD/docs/_static/copybutton.js -------------------------------------------------------------------------------- /docs/_static/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giampaolo/confix/HEAD/docs/_static/favicon.ico -------------------------------------------------------------------------------- /docs/_static/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giampaolo/confix/HEAD/docs/_static/logo.png -------------------------------------------------------------------------------- /docs/_static/sidebar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giampaolo/confix/HEAD/docs/_static/sidebar.js -------------------------------------------------------------------------------- /docs/_template/globaltoc.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giampaolo/confix/HEAD/docs/_template/globaltoc.html -------------------------------------------------------------------------------- /docs/_template/indexcontent.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giampaolo/confix/HEAD/docs/_template/indexcontent.html -------------------------------------------------------------------------------- /docs/_template/indexsidebar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giampaolo/confix/HEAD/docs/_template/indexsidebar.html -------------------------------------------------------------------------------- /docs/_template/page.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giampaolo/confix/HEAD/docs/_template/page.html -------------------------------------------------------------------------------- /docs/_themes/pydoctheme/static/pydoctheme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giampaolo/confix/HEAD/docs/_themes/pydoctheme/static/pydoctheme.css -------------------------------------------------------------------------------- /docs/_themes/pydoctheme/theme.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giampaolo/confix/HEAD/docs/_themes/pydoctheme/theme.conf -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giampaolo/confix/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giampaolo/confix/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giampaolo/confix/HEAD/docs/make.bat -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giampaolo/confix/HEAD/setup.py -------------------------------------------------------------------------------- /tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giampaolo/confix/HEAD/tests.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giampaolo/confix/HEAD/tox.ini --------------------------------------------------------------------------------