Skip to content

Commit 029ff03

Browse files
committed
adds MANIFEST.in
1 parent 75788bf commit 029ff03

File tree

1 file changed

+28
-0
lines changed

1 file changed

+28
-0
lines changed

MANIFEST.in

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
# Include essential top-level files
2+
include CMakeLists.txt
3+
include LICENSE
4+
include MANIFEST.in
5+
include README.md
6+
include pyproject.toml
7+
include setup.py
8+
9+
# Include the cmake and source directories
10+
recursive-include cmake *
11+
recursive-include src *
12+
13+
# Include the entire external directory first
14+
recursive-include external *
15+
16+
# Exclude common unwanted file patterns from .gitignore
17+
global-exclude *.obj *.off *.so *.pyc *.ini
18+
global-exclude *.creator* *.includes *.files *.config
19+
exclude test.ply
20+
21+
# Prune external libraries listed in .gitignore
22+
prune external/embree
23+
prune external/manifold
24+
prune external/simde
25+
prune external/tinyply
26+
prune external/numpyeigen
27+
prune external/igl
28+
prune external/geogram

0 commit comments

Comments
 (0)