This is from RHEL distgit tests/Cython, directory Sanity/smoke. The original commit hash: 36cb03f34340bf13e42326bd9cb26f5f03b6fc27 Only necessary files were kept. Some outdated stuff was removed. Co-Authored-By: Jan Kepler <jkejda@redhat.com> Co-Authored-By: Lukáš Zachar <lzachar@redhat.com>
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")
|
|
)
|