7 lines
120 B
Python
7 lines
120 B
Python
from setuptools import setup
|
|
from Cython.Build import cythonize
|
|
|
|
setup(
|
|
ext_modules = cythonize("helloworld.pyx")
|
|
)
|