Skip to content

Commit

Permalink
Add MANIFEST.in to include .pxd files that were missing.
Browse files Browse the repository at this point in the history
  • Loading branch information
lmcinnes committed Nov 9, 2015
1 parent 1e3fbd5 commit cc66eed
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
2 changes: 2 additions & 0 deletions MANIFEST.in
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
include *.rst *.txt
recursive-include hdbscan *.py *.pyx *.pxd *.c
6 changes: 3 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,10 @@
include_dirs=[numpy.get_include()])
_hdbscan_linkage = Extension('hdbscan._hdbscan_linkage',
sources=['hdbscan/_hdbscan_linkage.pyx'],
include_dirs=[numpy.get_include()])
include_dirs=['hdbscan', numpy.get_include()])
_hdbscan_boruvka = Extension('hdbscan._hdbscan_boruvka',
sources=['hdbscan/_hdbscan_boruvka.pyx'],
include_dirs=[numpy.get_include()])
include_dirs=['hdbscan', numpy.get_include()])
_hdbscan_reachability = Extension('hdbscan._hdbscan_reachability',
sources=['hdbscan/_hdbscan_reachability.pyx'],
include_dirs=[numpy.get_include()])
Expand All @@ -34,7 +34,7 @@ def readme():

configuration = {
'name' : 'hdbscan',
'version' : '0.4.1',
'version' : '0.4.2',
'description' : 'Clustering based on density with variable density clusters',
'long_description' : readme(),
'classifiers' : [
Expand Down

0 comments on commit cc66eed

Please sign in to comment.