/tmp/cython/setup.py
Python | 17 lines | 13 code | 3 blank | 1 comment | 0 complexity | 8ba102687a618af5fb0760031a4211db MD5 | raw file
1#!/usr/bin/env python 2 3from distutils.core import setup 4from distutils.extension import Extension 5 6from Cython.Distutils import build_ext 7 8setup( 9 name = "hello", 10 description = "Hello World in Cython", 11 cmdclass = { 12 "build_ext": build_ext, 13 }, 14 ext_modules = [ 15 Extension("hello", ["hello.pyx"]), 16 ], 17)