Rename corner operators and file

This commit is contained in:
Johannes Schönberger
2012-12-09 17:34:12 +01:00
parent 3b9ffe1cd8
commit 16f09d358d
5 changed files with 23 additions and 22 deletions
+2 -2
View File
@@ -12,11 +12,11 @@ def configuration(parent_package='', top_path=None):
config = Configuration('feature', parent_package, top_path)
config.add_data_dir('tests')
cython(['interest_cy.pyx'], working_path=base_path)
cython(['corner_cy.pyx'], working_path=base_path)
cython(['_texture.pyx'], working_path=base_path)
cython(['_template.pyx'], working_path=base_path)
config.add_extension('interest_cy', sources=['interest_cy.c'],
config.add_extension('corner_cy', sources=['corner_cy.c'],
include_dirs=[get_numpy_include_dirs()])
config.add_extension('_texture', sources=['_texture.c'],
include_dirs=[get_numpy_include_dirs(), '../_shared'])