Files
docker-stacks/tests/scipy-notebook/data/cython/setup.py
2022-02-21 16:52:25 +00:00

10 lines
199 B
Python

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")))