# -*- coding: utf-8 -*- # This file is under GNU Affero General Public License 3.0 # see LICENSE.txt from setuptools import setup, Extension ext_modules = [ Extension( "lib_test", ["lib_test/lib_test.cc"], include_dirs=['../../lib/lib_test', '/opt/local/Library/Frameworks/Python.framework/Versions/3.8/include/python3.8', 'venv/lib/python3.8/site-packages/pybind11/include'], extra_compile_args=['-std=c++11'], libraries=['lib_test'], library_dirs=['../../lib/lib_test/'] ) ] setup( packages=['lib_test'], ext_modules=ext_modules )