Metadata-Version: 2.1
Name: ConfTools
Version: 1.9.9
Summary: UNKNOWN
Home-page: http://github.com/AndreaCensi/conf_tools/
Author: Andrea Censi
Author-email: censi@mit.edu
License: LGPL
Download-URL: http://github.com/AndreaCensi/conf_tools/tarball/1.9.9
Keywords: configuration
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta

[![CircleCI](https://circleci.com/gh/AndreaCensi/conf_tools.svg?style=shield)](https://circleci.com/gh/AndreaCensi/conf_tools)


``ConfTools``: configuration made easy, for when it cannot be trivial
======================================================================

(To write)

Useful snippets
===============


Loading the YAML files that reside alongside the source code
------------------------------------------------------------

You can use ``resource_filename`` to find the directories
corresponding to the packages ``tmdp.configs`` in this way:

    from pkg_resources import resource_filename  
    dirs = [
        resource_filename("tmdp", "configs"),
        resource_filename("gridworld", "configs"),
    ]
    GlobalConfig.global_load_dirs(dirs)


