diff --git a/src/gh/diffCheck/MANIFEST.in b/src/gh/diffCheck/MANIFEST.in new file mode 100644 index 00000000..78109de1 --- /dev/null +++ b/src/gh/diffCheck/MANIFEST.in @@ -0,0 +1,3 @@ +include README.md +include diffCheck/dlls/*.dll +include diffCheck/*.pyd \ No newline at end of file diff --git a/src/gh/diffCheck/diffCheck.egg-info/PKG-INFO b/src/gh/diffCheck/diffCheck.egg-info/PKG-INFO index da8c1896..8324119a 100644 --- a/src/gh/diffCheck/diffCheck.egg-info/PKG-INFO +++ b/src/gh/diffCheck/diffCheck.egg-info/PKG-INFO @@ -1,19 +1,24 @@ Metadata-Version: 2.1 Name: diffCheck -Version: 0.0.24 +Version: 0.0.36 Summary: DiffCheck is a package to check the differences between two timber structures Home-page: https://github.com/diffCheckOrg/diffCheck Author: Andrea Settimi, Damien Gilliard, Eleni Skevaki, Marirena Kladeftira, Julien Gamerro, Stefana Parascho, and Yves Weinand Author-email: andrea.settimi@epfl.ch +License: UNKNOWN +Description: # DiffCheck: CAD-Scan comparison + + diffCheck(DF) allows to identify discrepancies across point clouds and 3D models of both individually machined timber pieces featuring various joints as well as fully assembled timber structures. It can help you quantify the differences between the CAD and scanned fabricated structure, providing a comprehensive report that highlights the discrepancies. + + The software is designed to be user-friendly and can be used either via a Grasshopper plug-in or its Python API. + + Visit the [DiffCheck website](https://diffcheckorg.github.io/diffCheck/) for more information and documentation. + + ![alt text](demo.png) + + The software is developed by the [Laboratory of Timber Construction (IBOIS)](https://www.epfl.ch/labs/ibois/) and the [Laboratory for Creative Computation (CRCL)](https://www.epfl.ch/labs/crcl/) at [Polytechnique Fédérale de Lausanne (EPFL)](https://www.epfl.ch/en/). +Platform: UNKNOWN Classifier: License :: OSI Approved :: MIT License Classifier: Programming Language :: Python :: 3 Classifier: Programming Language :: Python :: 3.9 Description-Content-Type: text/markdown -Requires-Dist: numpy -Requires-Dist: pybind11>=2.5.0 - -# DiffCheck Grasshopper Plugin - -DiffCheck is a plugin for Rhino/Grasshopper that allows the user to compare a 3D model with its scan. - -More information to come diff --git a/src/gh/diffCheck/diffCheck.egg-info/SOURCES.txt b/src/gh/diffCheck/diffCheck.egg-info/SOURCES.txt index e449d7df..e64d5fc2 100644 --- a/src/gh/diffCheck/diffCheck.egg-info/SOURCES.txt +++ b/src/gh/diffCheck/diffCheck.egg-info/SOURCES.txt @@ -1,3 +1,4 @@ +MANIFEST.in README.md setup.py diffCheck/__init__.py @@ -13,4 +14,6 @@ diffCheck.egg-info/PKG-INFO diffCheck.egg-info/SOURCES.txt diffCheck.egg-info/dependency_links.txt diffCheck.egg-info/requires.txt -diffCheck.egg-info/top_level.txt \ No newline at end of file +diffCheck.egg-info/top_level.txt +diffCheck/dlls/Open3D.dll +diffCheck/dlls/diffCheck.dll \ No newline at end of file diff --git a/src/gh/diffCheck/setup.py b/src/gh/diffCheck/setup.py index da785045..cea45b6b 100644 --- a/src/gh/diffCheck/setup.py +++ b/src/gh/diffCheck/setup.py @@ -22,7 +22,7 @@ "Programming Language :: Python :: 3", "Programming Language :: Python :: 3.9", ], - # include_package_data=True, + include_package_data=True, package_data={ "diffCheck": ["diffCheck/dlls/*.dll", "*.pyd"] },