from distutils.core import setup, Extension ext = Extension('fatalmalloc', ['fatalmalloc.c']) options = { 'name': 'pyfatalmalloc', 'version': '0.0', 'license': 'MIT license', 'description': 'malloc fatal error', 'author': 'Victor Stinner', 'author_email': 'victor.stinner@gmail.com', 'ext_modules': [ext], } setup(**options)