Metadata-Version: 2.4
Name: honeybee-radiance-postprocess
Version: 0.4.598
Summary: Postprocessing of Radiance results and matrices
Home-page: https://github.com/ladybug-tools/honeybee-radiance-postprocess
Author: Ladybug Tools
Author-email: info@ladybug.tools
License: GPLv3
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: Implementation :: CPython
Classifier: Operating System :: OS Independent
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: honeybee-radiance==1.66.228
Requires-Dist: numpy<2.0.0
Requires-Dist: cupy-cuda12x==13.6.0
Dynamic: author
Dynamic: author-email
Dynamic: classifier
Dynamic: description
Dynamic: description-content-type
Dynamic: home-page
Dynamic: license
Dynamic: license-file
Dynamic: requires-dist
Dynamic: summary

[![Build Status](https://github.com/ladybug-tools/honeybee-radiance-postprocess/actions/workflows/ci.yaml/badge.svg)](https://github.com/ladybug-tools/honeybee-radiance-postprocess/actions)
[![Coverage Status](https://coveralls.io/repos/github/ladybug-tools/honeybee-radiance-postprocess/badge.svg?branch=master)](https://coveralls.io/github/ladybug-tools/honeybee-radiance-postprocess)

[![Python 3.10](https://img.shields.io/badge/python-3.10-orange.svg)](https://www.python.org/downloads/release/python-3100/) [![Python 3.7](https://img.shields.io/badge/python-3.7-blue.svg)](https://www.python.org/downloads/release/python-370/)

# honeybee-radiance-postprocess

Library and CLI for postprocessing of Radiance results and matrices.

## Installation
```console
pip install honeybee-radiance-postprocess
```

## QuickStart
```python
import honeybee_radiance_postprocess

```

## [API Documentation](http://ladybug-tools.github.io/honeybee-radiance-postprocess/docs)

## Local Development
1. Clone this repo locally
```console
git clone git@github.com:ladybug-tools/honeybee-radiance-postprocess

# or

git clone https://github.com/ladybug-tools/honeybee-radiance-postprocess
```
2. Install dependencies:
```console
cd honeybee-radiance-postprocess
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 ./honeybee_radiance_postprocess
sphinx-build -b html ./docs ./docs/_build/docs
```
