project_init 0.1.5

Initialize projects from a template. Fast
Documentation
# {{ project }}

## Usage

This repository contains a template for a nim project using the
[shake](http://shakebuild.com/) build system. It can be instantiated with
[pi](https://github.com/vmchale/project-init). For example:

```bash
git clone https://github.com/vmchale/shake-nim.git
pi shake-nim $YOUR_PROJECT_NAME
```

## Configuration

Any dependencies should be added to the `config/build.config` as a
comma-separated list, e.g.

```cfg
SRC_DIR = src
LIB_DEPENDS = [nimx, nim-pymod]
```

Run `./shake.hs configure` to install any dependencies.