-
Notifications
You must be signed in to change notification settings - Fork 481
Expand file tree
/
Copy pathMANIFEST.in
More file actions
41 lines (35 loc) · 1006 Bytes
/
MANIFEST.in
File metadata and controls
41 lines (35 loc) · 1006 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
40
41
# Acoustic data for the simulation
include pyroomacoustics/data/materials.json
include pyroomacoustics/data/sofa_files.json
# The header files for the compiled extension
include pyroomacoustics/libroom_src/*.h
include pyroomacoustics/libroom_src/*.hpp
include pyroomacoustics/libroom_src/*.cpp
# CMake build files
include CMakeLists.txt
graft external
include pyproject.toml
include requirements.txt
include LICENSE
# Keep the test files too
graft tests
graft tests/adaptive
graft tests/bss
graft tests/datasets
graft tests/denoise
graft tests/directivities
graft tests/doa
graft tests/experimental
graft tests/libroom
graft tests/phase
graft tests/transform
global-exclude *.py[co]
global-exclude __pycache__
# Exclude large data files from sdist to keep it under 100MB
recursive-exclude pyroomacoustics/data/sofa *.sofa
recursive-exclude examples *
recursive-exclude notebooks *
recursive-exclude logo *
recursive-exclude offline_packages *
recursive-exclude docs *
recursive-exclude build_debug *