Metadata-Version: 2.1
Name: dirtempl
Version: 0.1.3
Summary: Template a whole directory
Home-page: http://hitchdev.com/dirtempl/
Author: Colm O'Connor
Author-email: colm.oconnor.github@gmail.com
License: MIT
Keywords: template directory
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Topic :: Text Processing :: Markup
Classifier: Topic :: Software Development :: Libraries
Classifier: Natural Language :: English
Classifier: Programming Language :: Python :: 3.5
Description-Content-Type: text/markdown
License-File: LICENSE

# DirTempl

DirTempl templates a whole directory, letting you swap out individual snippets
for the contents of files in the snippets directory.

## Install

DirTempl is typically best installed by installing [pipx](https://pypa.github.io/pipx/)
and then installing dirtempl using pipx.

```bash
pipx install dirtempl
```

## Example Usage

```bash
dirtempl input/ snippets/ output/
```

Anything in input folder containing {{{{ my_snippet }}}} will replace
the contents with the corresponding file in snippets/ - e.g. my_snippet.

## Why not use jinja2?

Too complicated.


