You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
wasm3/setup.py

13 lines
327 B
Python

from setuptools import setup
from distutils.core import Extension
from glob import glob
SOURCES = glob('source/*.c') + ['platforms/python/m3module.c']
setup(
name='wasm3',
version='0.0.1',
ext_modules=[
Extension('m3', sources=SOURCES, include_dirs=['source'],
extra_compile_args=['-g', '-O0'])]
)