From 262ffeed8a21f391172eeabc664984a5bbf89cc5 Mon Sep 17 00:00:00 2001 From: David Hendriks <davidhendriks93@gmail.com> Date: Wed, 8 Apr 2020 19:49:06 +0100 Subject: [PATCH] fixed small errors --- setup.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/setup.py b/setup.py index 9b2e77cac..20b55a75d 100644 --- a/setup.py +++ b/setup.py @@ -120,10 +120,10 @@ BINARY_C_PYTHON_API_MODULE = Extension( # name="binarycpython.core.binary_c", name="binary_c_python_api", sources=["src/binary_c_python.c"], - INCLUDE_DIRS=INCLUDE_DIRS, - LIBRARIES=LIBRARIES, - LIBRARY_DIRS=LIBRARY_DIRS, - RUNTIME_LIBRARY_DIRS=RUNTIME_LIBRARY_DIRS, + include_dirs=INCLUDE_DIRS, + libraries=LIBRARIES, + library_dirs=LIBRARY_DIRS, + runtime_library_dirs=RUNTIME_LIBRARY_DIRS, define_macros=[] + BINARY_C_DEFINE_MACROS, extra_objects=[], extra_compile_args=[], -- GitLab