Move template matching to feature subpackage

This commit is contained in:
Tony S Yu
2012-05-08 21:32:05 -04:00
parent 01d66fc501
commit e8461e22dd
9 changed files with 6 additions and 35 deletions
+3
View File
@@ -12,9 +12,12 @@ def configuration(parent_package='', top_path=None):
config.add_data_dir('tests')
cython(['_greycomatrix.pyx'], working_path=base_path)
cython(['_template.pyx'], working_path=base_path)
config.add_extension('_greycomatrix', sources=['_greycomatrix.c'],
include_dirs=[get_numpy_include_dirs()])
config.add_extension('_template', sources=['_template.c'],
include_dirs=[get_numpy_include_dirs()])
return config