Fix build script

This commit is contained in:
Tony S Yu
2013-06-29 12:40:54 -05:00
parent f92f057cbd
commit d96411a743
-4
View File
@@ -21,7 +21,6 @@ def configuration(parent_package='', top_path=None):
cython(['rank/_crank16.pyx'], working_path=base_path)
cython(['rank/_crank16_percentiles.pyx'], working_path=base_path)
cython(['rank/_crank16_bilateral.pyx'], working_path=base_path)
cython(['rank/rank.pyx'], working_path=base_path)
cython(['rank/percentile_rank.pyx'], working_path=base_path)
cython(['rank/bilateral_rank.pyx'], working_path=base_path)
@@ -46,9 +45,6 @@ def configuration(parent_package='', top_path=None):
config.add_extension(
'rank._crank16_bilateral', sources=['rank/_crank16_bilateral.c'],
include_dirs=[get_numpy_include_dirs()])
config.add_extension(
'rank.rank', sources=['rank/rank.c'],
include_dirs=[get_numpy_include_dirs()])
config.add_extension(
'rank.percentile_rank', sources=['rank/percentile_rank.c'],
include_dirs=[get_numpy_include_dirs()])