Metadata-Version: 2.1
Name: ladybug-dotnet
Version: 1.0.0
Summary: A library for communicating between Ladybug Tools core Python libraries and .NET libraries
Home-page: https://github.com/ladybug-tools/ladybug-dotnet
Author: Ladybug Tools
Author-email: info@ladybug.tools
License: UNKNOWN
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: Implementation :: CPython
Classifier: License :: OSI Approved :: GNU General Public License v3 (GPLv3)
Classifier: Operating System :: OS Independent
Description-Content-Type: text/markdown
Requires-Dist: ladybug-geometry (>=1.14.0)

[![Build Status](https://travis-ci.org/ladybug-tools/ladybug-dotnet.svg?branch=master)](https://travis-ci.org/ladybug-tools/ladybug-dotnet)

[![IronPython](https://img.shields.io/badge/ironpython-2.7-red.svg)](https://github.com/IronLanguages/ironpython2/releases/tag/ipy-2.7.8/)

# ladybug-dotnet

A library for communicating between Ladybug Tools core Python libraries and .NET libraries

## Installation
```
pip install ladybug-dotnet
```

## QuickStart
```python
import ladybug_dotnet

```

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

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

# or

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

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


