From 82319ef025a19575f395ec2dd21cd7b204bd22b3 Mon Sep 17 00:00:00 2001 From: LioTree Date: Sat, 9 Mar 2024 10:54:37 +0000 Subject: [PATCH] add ./clara to the include path of cimport --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 82b1de3..9d67df9 100644 --- a/setup.py +++ b/setup.py @@ -15,7 +15,7 @@ author_email='radicek@forsyte.at', url='https://github.com/iradicek/clara', packages=['clara'], - ext_modules = cythonize(extensions), + ext_modules = cythonize(extensions, include_path=["./clara"]), install_requires=['pycparser', 'zss'], scripts=['bin/clara'] )