Metadata-Version: 2.1
Name: lbt-recipes
Version: 0.16.4
Summary: A collection of recipes that ship with the Ladybug Tools plugins.
Home-page: https://github.com/ladybug-tools/lbt-recipes
Author: Ladybug Tools
Author-email: info@ladybug.tools
License: AGPL-3.0
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: Implementation :: CPython
Classifier: License :: OSI Approved :: GNU Affero General Public License v3
Classifier: Operating System :: OS Independent
Description-Content-Type: text/markdown
License-File: LICENSE

[![Build Status](https://github.com/ladybug-tools/lbt-recipes/workflows/CI/badge.svg)](https://github.com/ladybug-tools/lbt-recipes/actions)

# lbt-recipes

A collection of recipes that ship with the Ladybug Tools plugins.

This includes Radiance recipes, which automate the process of running daylight and radiation studies using [Radiance](http://radiance-online.org/).

It also includes microclimate mapping recipes, which spatially map thermal comfort using [EnergyPlus](https://github.com/NREL/EnergyPlus) and [Radiance](http://radiance-online.org/).

## Installation

`pip install -U lbt-recipes`

To check if command line interface is installed correctly use `lbt-recipes viz` and you
should get a `viiiiiiiiiiiiizzzzzzzzz!` back in response!

## Local Development

1. Clone this repo locally

```console
git clone git@github.com:ladybug-tools/lbt-recipes

# or

git clone https://github.com/ladybug-tools/lbt-recipes
```

2. Install dependencies:

```console
cd lbt-recipes
pip install -r dev-requirements.txt
pip install -r requirements.txt
```

3. Run Tests:

```console
python -m pytest ./tests
```


