We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2b03b92 commit f72493cCopy full SHA for f72493c
CMakeLists.txt
@@ -61,7 +61,9 @@ add_subdirectory(deeptime/clustering)
61
add_subdirectory(deeptime/basis)
62
add_subdirectory(deeptime/markov)
63
64
-add_subdirectory(examples/clustering_custom_metric)
+if (NOT SKBUILD)
65
+ add_subdirectory(examples/clustering_custom_metric)
66
+endif()
67
68
if(DEEPTIME_BUILD_CPP_TESTS)
69
add_subdirectory(tests)
MANIFEST.in
@@ -4,9 +4,12 @@ include LICENSE.txt
4
include pyproject.toml
5
6
# sources of extensions (incl. cython)
7
-recursive-include deeptime *.pyx *.h *.hpp *.c *.cpp
+recursive-include deeptime *.pyx *.h *.hpp *.c *.cpp CMakeLists.txt
8
9
prune tests
10
prune docs
11
prune *.egg-info
12
prune .github
13
+prune _skbuild
14
+prune examples
15
+prune cmake-build-*
0 commit comments