From 744c08b99d6c44e7693a2df997c1d17202f1c64f Mon Sep 17 00:00:00 2001 From: Mario Fink Date: Tue, 26 Jan 2021 11:26:51 +0100 Subject: [PATCH] get rid of setup_osx.py --- cython/setup_osx.py | 19 ------------------- 1 file changed, 19 deletions(-) delete mode 100644 cython/setup_osx.py diff --git a/cython/setup_osx.py b/cython/setup_osx.py deleted file mode 100644 index cd2876a..0000000 --- a/cython/setup_osx.py +++ /dev/null @@ -1,19 +0,0 @@ -from distutils.core import setup -from distutils.extension import Extension -from Cython.Build import cythonize - -extensions = Extension( - name="tdm_ripper", - sources=["pytdm_ripper.pyx"], - # libraries=[""], - library_dirs=["lib"], - include_dirs=["lib"], - language='c++', - extra_compile_args=['-stdlib=libc++','-std=c++11','-Wno-unused-variable'], - extra_link_args=['-stdlib=libc++','-std=c++11'], -) - -setup( - name="tdm_ripper", - ext_modules=cythonize(extensions) -)