Fix cython in scipy-notebook

This commit is contained in:
Ayaz Salikhov
2022-02-21 16:52:10 +00:00
parent 3088589c06
commit 96f8bcf771
4 changed files with 54 additions and 2 deletions

View File

@@ -0,0 +1,9 @@
from setuptools import setup
from Cython.Build import cythonize
from pathlib import Path
THIS_DIR = Path(__file__).parent.resolve()
setup(ext_modules=cythonize(str(THIS_DIR / "helloworld.pyx")))