Renamed _construct.pyx to _build_rag.pyx and some code corrections

This commit is contained in:
Vighnesh Birodkar
2014-06-19 02:50:25 +05:30
parent 53318c44df
commit 2a7ec3afd4
5 changed files with 41 additions and 41 deletions
+2 -2
View File
@@ -17,7 +17,7 @@ def configuration(parent_package='', top_path=None):
cython(['_spath.pyx'], working_path=base_path)
cython(['_mcp.pyx'], working_path=base_path)
cython(['heap.pyx'], working_path=base_path)
cython(['_construct.pyx'], working_path=base_path)
cython(['_build_rag.pyx'], working_path=base_path)
config.add_extension('_spath', sources=['_spath.c'],
@@ -26,7 +26,7 @@ def configuration(parent_package='', top_path=None):
include_dirs=[get_numpy_include_dirs()])
config.add_extension('heap', sources=['heap.c'],
include_dirs=[get_numpy_include_dirs()])
config.add_extension('_construct', sources=['_construct.c'],
config.add_extension('_build_rag', sources=['_build_rag.c'],
include_dirs=[get_numpy_include_dirs()])