forked from LCAV/pyroomacoustics
-
Notifications
You must be signed in to change notification settings - Fork 0
/
MANIFEST.in
28 lines (23 loc) · 849 Bytes
/
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
# Acoustic data for the simulation
include pyroomacoustics/data/materials.json
# The header files for the compiled extension
include pyroomacoustics/libroom_src/*.h
include pyroomacoustics/libroom_src/*.hpp
include pyroomacoustics/libroom_src/*.cpp
# The compiled extension code rely on Eigen, which is included
include pyroomacoustics/libroom_src/ext/eigen/COPYING.*
graft pyroomacoustics/libroom_src/ext/eigen/Eigen
include pyproject.toml
include requirements.txt
include LICENSE
# Keep the test files too
graft pyroomacoustics/tests
graft pyroomacoustics/adaptive/tests
graft pyroomacoustics/bss/tests
graft pyroomacoustics/datasets/tests
graft pyroomacoustics/doa/tests
graft pyroomacoustics/experimental/tests
graft pyroomacoustics/libroom_src/tests
graft pyroomacoustics/transform/tests
global-exclude *.py[co]
global-exclude __pycache__