diff options
| author | Gertjan van den Burg <gertjanvandenburg@gmail.com> | 2017-10-07 15:39:12 +0200 |
|---|---|---|
| committer | Gertjan van den Burg <gertjanvandenburg@gmail.com> | 2017-10-07 15:39:12 +0200 |
| commit | 3179373ad91245d8712c97be5add387d1b8e2304 (patch) | |
| tree | a622b0d73a3b8306a2674a2a4d975700d7183dbc /setup.py | |
| parent | rearrange and update setup.py (diff) | |
| download | pygensvm-3179373ad91245d8712c97be5add387d1b8e2304.tar.gz pygensvm-3179373ad91245d8712c97be5add387d1b8e2304.zip | |
give the wrapper a better name
Diffstat (limited to 'setup.py')
| -rw-r--r-- | setup.py | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -41,7 +41,7 @@ def configuration(): # Wrapper code in Cython uses the .pyx extension if we want to USE_CYTHON, # otherwise it ends in .c. If you have more Cython code, you may want to # extend this a bit - wrapper = 'pyx_gensvm.pyx' if USE_CYTHON else 'pyx_gensvm.c' + wrapper = 'wrapper.pyx' if USE_CYTHON else 'wrapper.c' # Sources include the C/Cython code from the wrapper and the source code of # the C library @@ -57,7 +57,7 @@ def configuration(): os.path.join('src', 'gensvm', 'gensvm_helper.c') ] - config.add_extension('pyx_gensvm', + config.add_extension('wrapper', sources=gensvm_sources, libraries=cblas_libs, include_dirs=[ |
