Metadata-Version: 2.1
Name: igl
Version: 2.2.1
Summary: libigl Python Bindings
Home-page: https://libigl.github.io/libigl-python-bindings/
Author: libigl
Author-email: 
License: UNKNOWN
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Description-Content-Type: text/markdown
Requires-Dist: numpy
Requires-Dist: scipy

# *New* LibIGL Python Bindings
[![Build Status](https://travis-ci.com/libigl/libigl-python-bindings.svg?branch=master)](https://travis-ci.com/libigl/libigl-python-bindings)
[![Build Status](https://dev.azure.com/libigl/Libigl/_apis/build/status/libigl.libigl-python-bindings?branchName=master)](https://dev.azure.com/libigl/Libigl/_build/latest?definitionId=1&branchName=master)

This repository contains the source code for the new and improved LibIGL Python bindings. These bindings are fully compatible with NumPy and SciPy and offer a convenient interface similar to functions in those libraries.

These bindings are still under active development and should still be considered alpha quality. We encourage users to post issues so we can improve the bindings!

## Installation

### With Conda (Recommended)
The simplest and best way to install the new LibIGL Python bindings is to run:
```
conda install -c conda-forge igl
```

### Compile from scratch (Not recommended)
If you wish to install the current master branch, you can compile the library from scratch, you can clone this repository and run the following command from the main directory:
```
python setup.py install
```

**NOTE:** We will not provide support for installations done in this way, since there is a lot of variation between systems. For a consistent experience, use conda.

## [Help/Documentation](https://libigl.github.io/libigl-python-bindings/)
* A *temporary* tutorial on how to use the bindings can be found [here](https://libigl.github.io/libigl-python-bindings/tutorials/)
* A *temporary* function reference can be found [here](https://libigl.github.io/libigl-python-bindings/igl_docs/)


## Compiling and modifying the bindiings
After cloning this repository, you can compile the bindings from scratch by running:
```
python setup.py develop
```
or
```
python setup.py build --debug develop
```
for debug compilation.

The above command will make the package `igl` available for import in the current shell.

To run the tests:
```
python setup.py test
```





