Skip to content

生成pyd

shell
py -3 -m pip install Cython
python
from distutils.core import setup
from Cython.Build import cythonize

setup(
	ext_modules=cythonize("afile.py")
)

Released under the MIT License.