forked from BlueBrain/MorphIO
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMANIFEST.in
32 lines (27 loc) · 994 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
29
30
31
32
# MorphIO c++
graft src
graft include
include CMakeLists.txt
# MorphIO submodule dependencies
include 3rdparty/GSL_LITE/CMakeLists.txt 3rdparty/GSL_LITE/gsl-lite.natvis
recursive-include 3rdparty/GSL_LITE/cmake *
recursive-include 3rdparty/GSL_LITE/include *
include 3rdparty/HighFive/CMakeLists.txt
recursive-include 3rdparty/HighFive/include *
recursive-include 3rdparty/HighFive/CMake *
recursive-include 3rdparty/HighFive/doc *
include 3rdparty/lexertl14/CMakeLists.txt
recursive-include 3rdparty/lexertl14/include/lexertl *
# pybind11 for python bindings
recursive-include binds/python/pybind11/include *
recursive-include binds/python/pybind11/tools *.cmake
include binds/python/pybind11/CMakeLists.txt
include binds/python/pybind11/LICENSE
# setuptools_scm forces all SCM files to be packaged into sdist
# we need to manually exclude them to prevent their inclusion
# see https://github.com/pypa/setuptools_scm/issues/190
prune ci
prune doc
prune tests
prune scripts
prune examples