-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMANIFEST.in
More file actions
52 lines (44 loc) · 1.13 KB
/
MANIFEST.in
File metadata and controls
52 lines (44 loc) · 1.13 KB
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
46
47
48
49
50
51
52
# Include documentation and metadata files
include README.md
include LICENSE
include VERSION
include pyproject.toml
# Include Makefiles for building CUDA libraries
include SVM/Makefile
include HBM_SVM/Makefile
# Include CUDA source files (for users who want to compile)
include SVM/*.cu
include SVM/*.cuh
include SVM/*.cpp
include HBM_SVM/*.cu
include HBM_SVM/*.cuh
include HBM_SVM/*.cpp
# Include build and test scripts
include HBM_SVM/build_and_test.sh
# Include usage examples and documentation
recursive-include Usage *.py
recursive-include Usage *.md
# Include any additional documentation
recursive-include docs *.md
recursive-include docs *.rst
# Exclude compiled files and build artifacts
exclude SVM/*.o
exclude SVM/*.so
exclude HBM_SVM/*.o
exclude HBM_SVM/*.so
global-exclude __pycache__
global-exclude *.pyc
global-exclude *.pyo
global-exclude .DS_Store
global-exclude *.orig
# Exclude development and CI files
exclude .gitignore
exclude .github/workflows/*.yml
exclude tests/
recursive-exclude tests *
# Exclude IDE and editor files
global-exclude .vscode
global-exclude .idea
global-exclude *.swp
global-exclude *.swo
global-exclude *~