-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMANIFEST.in
More file actions
34 lines (28 loc) · 805 Bytes
/
MANIFEST.in
File metadata and controls
34 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
# Include license and documentation
include LICENSE
include README.md
include FindDTLMod.cmake
include conf/doxygen/Doxyfile.in
include doc/scripts/generate_rst.py
include doc/source/conf.py
include doc/source/favicon.png
include doc/source/index.rst
include doc/source/requirements.txt
include doc/source/_static/css/custom.css
# Include CMake build files
include CMakeLists.txt
recursive-include cmake *
recursive-include conf *.cmake
# Include source and header files
recursive-include include *.hpp
recursive-include src *.cpp
include include/dtlmod/version.hpp.in
# Include Python bindings
recursive-include bindings *.cpp
# Include tests files
recursive-include test *.cpp
recursive-include test *.py
include test/test_util.hpp
include test/DTL-config.json
# Include setup.py
include setup.py