aboutsummaryrefslogtreecommitdiff
path: root/setup.py
diff options
context:
space:
mode:
authorGertjan van den Burg <gertjanvandenburg@gmail.com>2017-10-07 15:39:12 +0200
committerGertjan van den Burg <gertjanvandenburg@gmail.com>2017-10-07 15:39:12 +0200
commit3179373ad91245d8712c97be5add387d1b8e2304 (patch)
treea622b0d73a3b8306a2674a2a4d975700d7183dbc /setup.py
parentrearrange and update setup.py (diff)
downloadpygensvm-3179373ad91245d8712c97be5add387d1b8e2304.tar.gz
pygensvm-3179373ad91245d8712c97be5add387d1b8e2304.zip
give the wrapper a better name
Diffstat (limited to 'setup.py')
-rw-r--r--setup.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/setup.py b/setup.py
index e9e223b..2962329 100644
--- a/setup.py
+++ b/setup.py
@@ -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=[