Metadata-Version: 2.1
Name: hipopybind
Version: 0.1.0
Summary: A HIPO python library using PyBind11 and CMake
Home-page: https://github.com/mfmceneaney/hipopybind.git
Author: Matthew McEneaney
Author-email: matthew.mceneaney@duke.edu
License: MIT
Requires-Python: >=3.6
Description-Content-Type: text/markdown
Provides-Extra: test
License-File: LICENSE

#  HipopyBind : HIPO PyBind11 Library

## Installation
To compile the library from source run the following:

```bash
git clone --recurse-submodules https://github.com/mfmceneaney/hipopybind.git
cd hipopybind
cmake .
make
```

And add the following to your startup script:

```bash
export PYTHONPATH=$PYTHONPATH\:/path/to/hipopybind
```

Or to install from PyPi run:

```bash
pip install hipopybind
```


# Developer Note
For updating submodules run the following:

```bash
git submodule update --init --recursive
```

#

Contact: matthew.mceneaney@duke.edu
