mirror of
https://github.com/jupyter/docker-stacks.git
synced 2025-10-08 10:34:06 +00:00
7 lines
241 B
Python
7 lines
241 B
Python
# These lines are not sorted by isort on purpose
|
|
# see: https://stackoverflow.com/a/53356077/4881441
|
|
from setuptools import setup # isort:skip
|
|
from Cython.Build import cythonize # isort:skip
|
|
|
|
setup(ext_modules=cythonize("helloworld.pyx"))
|