python3.14-Cython/tests/smoke/setup.py
2025-11-28 10:45:50 +01:00

7 lines
120 B
Python

from setuptools import setup
from Cython.Build import cythonize
setup(
ext_modules = cythonize("helloworld.pyx")
)