-
Notifications
You must be signed in to change notification settings - Fork 47
/
Copy pathMANIFEST.in
executable file
·45 lines (40 loc) · 1.02 KB
/
MANIFEST.in
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
# Include only essential Python code and metadata for installation.
include setup.py pyproject.toml
include environment.yml
include LICENSE README.md
include MANIFEST.in
exclude PKG-INFO
# Include shared libraries or compiled files (if needed for runtime).
prune *.data
recursive-include ezc3d *.so
recursive-include ezc3d *.dll
recursive-include ezc3d *.dylib
recursive-include ezc3d *.pyd
recursive-include ezc3d *.lib
recursive-include ezc3d *.py
# Exclude source and development files
include CMakeLists.txt *.cmake.in
recursive-include binding/*
recursive-include include/*
recursive-include modules/*
recursive-include share/*
recursive-include src/*
exclude .github/*
exclude logo/*
exclude external/*
exclude _skbuild/*
prune .github/*
prune logo/*
prune external/*
prune _skbuild/*
# Exclude docs, tests and example data
exclude doc/*
exclude test/*
exclude examples/*
prune doc/*
prune test/*
prune examples/*
# Exclude version control and temporary files
global-exclude *.git*
global-exclude __pycache__/*
global-exclude *.py[co]