-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathMANIFEST.in
More file actions
40 lines (33 loc) · 1.18 KB
/
MANIFEST.in
File metadata and controls
40 lines (33 loc) · 1.18 KB
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
# MorphIO c++
graft src
graft include
include CMakeLists.txt
# MorphIO submodule dependencies
include 3rdparty/GSL_LITE/CMakeLists.txt
recursive-include 3rdparty/GSL_LITE/cmake *
recursive-include 3rdparty/GSL_LITE/include *
recursive-include 3rdparty/GSL_LITE/src *
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 *
# ghc::filesystem
recursive-include 3rdparty/ghc_filesystem/include *
recursive-include 3rdparty/ghc_filesystem/cmake *
include 3rdparty/ghc_filesystem/CMakeLists.txt
include 3rdparty/ghc_filesystem/LICENSE
# 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