-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMANIFEST.in
More file actions
36 lines (28 loc) · 805 Bytes
/
Copy pathMANIFEST.in
File metadata and controls
36 lines (28 loc) · 805 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
# Include documentation
include README.md
include LICENSE
include Implementation_guide.md
include QUICK_START.md
include BUILD_INSTRUCTIONS.md
# Include requirements files
include requirements.txt
include requirements-dev.txt
include requirements-build.txt
# Include all Python files in the package
recursive-include src/openlightshow *.py
# Include TOML configuration files
include src/openlightshow/presets.toml
include src/openlightshow/exclude_list.toml
# Include icons
include src/openlightshow/icons/*.ico
include src/openlightshow/icons/*.png
include src/openlightshow/icons/*.ifg
# Exclude compiled Python files
global-exclude __pycache__
global-exclude *.py[co]
# Exclude website
prune website
# Exclude build artifacts
global-exclude *.so
global-exclude *.dylib
global-exclude .DS_Store