Metadata-Version: 2.4
Name: dragonfly-idaice
Version: 0.1.1
Summary: Dragonfly extension for export to IES-VE GEM file format
Home-page: https://github.com/ladybug-tools/dragonfly-idaice
Author: Ladybug Tools
Author-email: info@ladybug.tools
License: AGPL-3.0
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: dragonfly-core>=1.65.3
Requires-Dist: honeybee-idaice==1.3.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/dragonfly-idaice/workflows/CI/badge.svg)](https://github.com/ladybug-tools/dragonfly-idaice/actions)

[![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/)

# dragonfly-idaice

Dragonfly extension for export to IES-VE GEM file format

## Installation
```console
pip install dragonfly-idaice
```

## QuickStart
```python
import dragonfly_idaice

```

## [API Documentation](http://ladybug-tools.github.io/dragonfly-idaice/docs)

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

# or

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