-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathMANIFEST.in
More file actions
39 lines (33 loc) · 967 Bytes
/
MANIFEST.in
File metadata and controls
39 lines (33 loc) · 967 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
# Include essential documentation
include README.md
include LICENSE
include CLAUDE.md
include CHANGELOG.md
include doc/PYPI_RELEASE_GUIDE.md
# Include configuration files
include pyproject.toml
include setup.py
# Include example scripts (but not in the package itself)
recursive-include scripts *.py
recursive-include scripts *.md
# Include all source code
recursive-include src *.py
# Include network weights and models
recursive-include src/physiomotion4d/network_weights *
# Include data files
recursive-include src/physiomotion4d *.json
recursive-include src/physiomotion4d *.yaml
recursive-include src/physiomotion4d *.yml
# Exclude unnecessary files
global-exclude __pycache__
global-exclude *.py[co]
global-exclude .DS_Store
global-exclude *.so
global-exclude *.dylib
global-exclude .git*
recursive-exclude tests *
recursive-exclude experiments *
recursive-exclude data *
recursive-exclude build *
recursive-exclude dist *
recursive-exclude *.egg-info *