mirror of
https://github.com/jupyter/docker-stacks.git
synced 2025-10-09 19:12:59 +00:00
10 lines
199 B
Python
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")))
|