Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -25,4 +25,4 @@ external/tinyply/
external/numpyeigen/
external/igl/
external/geogram/
external/tinyobjloader/
external/tinyobjloader/
30 changes: 30 additions & 0 deletions MANIFEST.in
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
# Include essential top-level files
include CMakeLists.txt
include LICENSE
include MANIFEST.in
include README.md
include pyproject.toml
include setup.py

# Include the cmake and source directories
recursive-include cmake *
recursive-include src *

# Include the entire external directory first
recursive-include external *

# Exclude common unwanted file patterns from .gitignore
global-exclude *.obj *.off *.so *.pyc *.ini
global-exclude *.creator* *.includes *.files *.config
exclude test.ply

# Prune external libraries listed in .gitignore
prune external/embree
prune external/manifold
prune external/simde
prune external/tinyply
prune external/numpyeigen
prune external/igl
prune external/geogram
prune external/tinyobjloader
prune external/.cache
3 changes: 2 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,8 @@ def main():
'numpy',
'scipy'
],
test_suite="tests"
test_suite="tests",
include_package_data = True,
)


Expand Down