Metadata-Version: 2.1
Name: ladybug-radiance
Version: 0.2.9
Summary: Radiance extension for Ladybug, used for all radiation studies and graphics.
Home-page: https://github.com/ladybug-tools/ladybug-radiance
Author: Ladybug Tools
Author-email: info@ladybug.tools
License: AGPL-3.0
Classifier: Programming Language :: Python :: 2.7
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: ladybug-core (>=0.41.30)
Requires-Dist: numpy (>=1.21.6) ; python_version >= "3.6"
Provides-Extra: display
Requires-Dist: ladybug-display (==0.10.1) ; extra == 'display'


![Ladybug](http://www.ladybug.tools/assets/img/ladybug.png)

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

[![Python 3.7](https://img.shields.io/badge/python-3.7-blue.svg)](https://www.python.org/downloads/release/python-370/) [![Python 2.7](https://img.shields.io/badge/python-2.7-green.svg)](https://www.python.org/downloads/release/python-270/) [![IronPython](https://img.shields.io/badge/ironpython-2.7-red.svg)](https://github.com/IronLanguages/ironpython2/releases/tag/ipy-2.7.8/)

# ladybug-radiance

Ladybug-radiance is a Python library that adds Radiance-related functionalities to
[ladybug-core](https://github.com/ladybug-tools/ladybug/).

## [API Documentation](https://www.ladybug.tools/ladybug-radiance/docs/)

## Installation

`pip install ladybug-radiance`

## QuickStart

```python
import ladybug_radiance

```

## Local Development

1. Clone this repo locally
```console
git clone git@github.com:ladybug-tools/ladybug-radiance

# or

git clone https://github.com/ladybug-tools/ladybug-radiance
```
2. Install dependencies:
```console
cd ladybug-radiance
pip install -r dev-requirements.txt
pip install -r requirements.txt
```

3. Run Tests:
```console
python -m pytest tests/
```

4. Generate Documentation:
```console
sphinx-apidoc -f -e -d 4 -o ./docs ./ladybug_radiance
sphinx-build -b html ./docs ./docs/_build/docs
```
