File tree Expand file tree Collapse file tree 2 files changed +5
-3
lines changed Expand file tree Collapse file tree 2 files changed +5
-3
lines changed Original file line number Diff line number Diff line change
1
+ include *.rst *.txt
2
+ recursive-include hdbscan *.py *.pyx *.pxd *.c
Original file line number Diff line number Diff line change 17
17
include_dirs = [numpy .get_include ()])
18
18
_hdbscan_linkage = Extension ('hdbscan._hdbscan_linkage' ,
19
19
sources = ['hdbscan/_hdbscan_linkage.pyx' ],
20
- include_dirs = [numpy .get_include ()])
20
+ include_dirs = ['hdbscan' , numpy .get_include ()])
21
21
_hdbscan_boruvka = Extension ('hdbscan._hdbscan_boruvka' ,
22
22
sources = ['hdbscan/_hdbscan_boruvka.pyx' ],
23
- include_dirs = [numpy .get_include ()])
23
+ include_dirs = ['hdbscan' , numpy .get_include ()])
24
24
_hdbscan_reachability = Extension ('hdbscan._hdbscan_reachability' ,
25
25
sources = ['hdbscan/_hdbscan_reachability.pyx' ],
26
26
include_dirs = [numpy .get_include ()])
@@ -34,7 +34,7 @@ def readme():
34
34
35
35
configuration = {
36
36
'name' : 'hdbscan' ,
37
- 'version' : '0.4.1 ' ,
37
+ 'version' : '0.4.2 ' ,
38
38
'description' : 'Clustering based on density with variable density clusters' ,
39
39
'long_description' : readme (),
40
40
'classifiers' : [
You can’t perform that action at this time.
0 commit comments