Metadata-Version: 2.1
Name: compas-cgal
Version: 0.1.1
Summary: COMPAS friedly bindings for the CGAL library.
Home-page: https://github.com/BlockResearchGroup/compas_cgal
Author: tom van mele
Author-email: van.mele@arch.ethz.ch
License: GPL-3 License
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: Topic :: Scientific/Engineering
Classifier: License :: OSI Approved :: GPL-3 License
Classifier: Operating System :: Unix
Classifier: Operating System :: POSIX
Classifier: Operating System :: Microsoft :: Windows
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: Implementation :: CPython
Requires-Python: >=3.6
Description-Content-Type: text/markdown
Requires-Dist: COMPAS (>=0.16.0)

# COMPAS CGAL

More information is available in the docs:
<https://blockresearchgroup.github.io/compas_cgal/>

## Installation

Note that the CMake-based version of `setup.py` is not working on Windows, yet.
The version using `setuptools` works on Windows and on Mac.

### Mac

```bash
conda create -n cgal python=3.7 python.app eigen boost-cpp gmp mpfr cgal-cpp">=5.0" pybind11 COMPAS">=0.16.0"
conda activate cgal
pip install -e .
```

### Windows

```bash
conda create -n cgal python=3.7 eigen boost-cpp mpir mpfr cgal-cpp">=5.0" pybind11 COMPAS">=0.16.0"
conda activate cgal
pip install -e .
```


