blob: bd95d70abbd6298a1c8e2d23e97939c3f20a1426 (
plain)
1
2
3
4
5
6
7
|
from distutils.core import Extension, setup
from Cython.Build import cythonize
# define an extension that will be cythonized and compiled
ext = Extension(name="setproperty", sources=["setproperty.pyx"])
setup(ext_modules=cythonize(ext))
|