-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMANIFEST.in
More file actions
46 lines (36 loc) · 1012 Bytes
/
Copy pathMANIFEST.in
File metadata and controls
46 lines (36 loc) · 1012 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
# Include essential files
include README.md
include LICENSE
include CHANGELOG.md
include pyproject.toml
include setup.py
# Include C++ source and headers
recursive-include include *.hpp *.h
recursive-include src *.cpp *.c *.hpp *.h *.mm *.m CMakeLists.txt
# Include CMake files
include CMakeLists.txt
recursive-include cmake *.cmake *.cmake.in
# Include Python package
recursive-include python *.py *.cpp CMakeLists.txt
# Include examples
recursive-include examples *.cpp *.py CMakeLists.txt
# Include third_party
recursive-include third_party *.txt *.cmake CMakeLists.txt
# Include CLI
recursive-include cli *.cpp CMakeLists.txt
# Include tests (for source distribution)
recursive-include tests *.cpp CMakeLists.txt
# Include documentation
recursive-include docs *.md *.rst
# Exclude build artifacts
global-exclude *.pyc
global-exclude __pycache__
global-exclude *.so
global-exclude *.dylib
global-exclude *.dll
global-exclude *.o
global-exclude *.a
prune build
prune dist
prune *.egg-info
prune .git