blob: 5dfe3c63e7acc6415c50d431367d838c20481199 (
plain)
1
2
3
4
5
6
7
8
9
|
from setuptools import setup
from wasmpy_build import build_ext
from Cython.Build import cythonize
setup(
name='Hello world app',
ext_modules=cythonize("test.py"),
cmdclass={"build_ext": build_ext},
)
|