Metadata-Version: 1.1
Name: treeshape
Version: 0.1.0
Summary: Quickly make files and directory structures.
Home-page: UNKNOWN
Author: Jonathan Lange
Author-email: jml@mumak.net
License: UNKNOWN
Description: ===========
         treeshape
        ===========
        
        treeshape allows you to quickly make file and directory structures on disk.
        
        For example::
        
            from treeshape import make_tree
        
            make_tree('.', [
                'logs/',
                ('README', "A simple directory layout\n"),
                ('data/input', "All of our input data\n"),
                ])
        
        Will create a directory structure that looks like this::
        
            $ find .
            .
            ./logs
            ./data
            ./data/input
            ./README
            $ cat README
            A simple directory layout
            $ cat data/input
            All of our input data
        
        This is particularly useful for tests that touch the disk.
        
        
Platform: UNKNOWN
Classifier: Development Status :: 6 - Mature
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Topic :: Software Development :: Quality Assurance
Classifier: Topic :: Software Development :: Testing
