forked from PlantSimulationLab/PyHelios
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMANIFEST.in
More file actions
31 lines (25 loc) · 747 Bytes
/
MANIFEST.in
File metadata and controls
31 lines (25 loc) · 747 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
# Include build scripts
include build_scripts/*.py
include build_scripts/build_helios
# Include documentation
include README.md
include docs/CHANGELOG.md
graft docs/examples
recursive-exclude docs/generated *
# Include configuration files
include pyproject.toml
include requirements*.txt
include pytest.ini
# Include stub file for platform-specific wheels
include pyhelios/_stub.c
# Include native libraries that get built
recursive-include pyhelios/plugins *.dll *.so *.dylib
# Include PyHelios assets for wheel packaging
recursive-include pyhelios/assets *
# Exclude test and development files
recursive-exclude tests *
recursive-exclude .github *
recursive-exclude pyhelios_build *
exclude test_*.py
exclude .gitignore
exclude .gitmodules