""" Calling $python setup.py build_ext --inplace will build the extension library in the current file. """ from setuptools import Extension, setup setup( ext_modules=[ Extension( name="cppfimdlp", sources=["fimdlp/cfimdlp.pyx", "fimdlp/CPPFImdlp.cpp"], language="c++", include_dirs=["fimdlp"], ), ] )