Metadata-Version: 2.1
Name: lbt-recipes
Version: 0.26.13
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
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
Requires-Dist: queenbee-local==0.6.6; python_version >= "3.8"
Requires-Dist: queenbee-local==0.6.2; python_version < "3.8"
Requires-Dist: pollination-handlers==0.10.7
Requires-Dist: click==7.1.2; python_version < "3.8"
Requires-Dist: click==8.1.7; python_version >= "3.8"

[![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 for 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)/[OpenStudio](https://github.com/NREL/OpenStudio)
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
```
