diff --git a/CHANGELOG.md b/CHANGELOG.md index 1431506..28c38de 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -11,6 +11,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Changed +* Fixed `compas_libigl` plugins are not detected. + ### Removed diff --git a/src/compas_libigl/__init__.py b/src/compas_libigl/__init__.py index e56d180..d037dcf 100644 --- a/src/compas_libigl/__init__.py +++ b/src/compas_libigl/__init__.py @@ -3,3 +3,14 @@ __license__ = "Mozilla Public License Version 2.0" __email__ = "van.mele@arch.ethz.ch, petrasvestartas@gmail.com" __version__ = "0.7.4" + + +__all_plugins__ = [ + "compas_libigl.geodistance", + "compas_libigl.intersections", + "compas_libigl.isolines", + "compas_libigl.massmatrix", + "compas_libigl.parametrisation", + "compas_libigl.planarize", + "compas_libigl.meshing", +]