Skip to content

Commit 39638e9

Browse files
committed
FIX: fixin the distribution missing dlls for pypi package
1 parent ec0c5cf commit 39638e9

File tree

4 files changed

+22
-11
lines changed

4 files changed

+22
-11
lines changed

src/gh/diffCheck/MANIFEST.in

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
include README.md
2+
include diffCheck/dlls/*.dll
3+
include diffCheck/*.pyd

src/gh/diffCheck/diffCheck.egg-info/PKG-INFO

Lines changed: 14 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,24 @@
11
Metadata-Version: 2.1
22
Name: diffCheck
3-
Version: 0.0.24
3+
Version: 0.0.36
44
Summary: DiffCheck is a package to check the differences between two timber structures
55
Home-page: https://github.com/diffCheckOrg/diffCheck
66
Author: Andrea Settimi, Damien Gilliard, Eleni Skevaki, Marirena Kladeftira, Julien Gamerro, Stefana Parascho, and Yves Weinand
77
Author-email: andrea.settimi@epfl.ch
8+
License: UNKNOWN
9+
Description: # DiffCheck: CAD-Scan comparison
10+
11+
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.
12+
13+
The software is designed to be user-friendly and can be used either via a Grasshopper plug-in or its Python API.
14+
15+
Visit the [DiffCheck website](https://diffcheckorg.github.io/diffCheck/) for more information and documentation.
16+
17+
![alt text](demo.png)
18+
19+
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/).
20+
Platform: UNKNOWN
821
Classifier: License :: OSI Approved :: MIT License
922
Classifier: Programming Language :: Python :: 3
1023
Classifier: Programming Language :: Python :: 3.9
1124
Description-Content-Type: text/markdown
12-
Requires-Dist: numpy
13-
Requires-Dist: pybind11>=2.5.0
14-
15-
# DiffCheck Grasshopper Plugin
16-
17-
DiffCheck is a plugin for Rhino/Grasshopper that allows the user to compare a 3D model with its scan.
18-
19-
More information to come

src/gh/diffCheck/diffCheck.egg-info/SOURCES.txt

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
MANIFEST.in
12
README.md
23
setup.py
34
diffCheck/__init__.py
@@ -13,4 +14,6 @@ diffCheck.egg-info/PKG-INFO
1314
diffCheck.egg-info/SOURCES.txt
1415
diffCheck.egg-info/dependency_links.txt
1516
diffCheck.egg-info/requires.txt
16-
diffCheck.egg-info/top_level.txt
17+
diffCheck.egg-info/top_level.txt
18+
diffCheck/dlls/Open3D.dll
19+
diffCheck/dlls/diffCheck.dll

src/gh/diffCheck/setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
"Programming Language :: Python :: 3",
2323
"Programming Language :: Python :: 3.9",
2424
],
25-
# include_package_data=True,
25+
include_package_data=True,
2626
package_data={
2727
"diffCheck": ["diffCheck/dlls/*.dll", "*.pyd"]
2828
},

0 commit comments

Comments
 (0)