mirror of
https://github.com/python/cpython.git
synced 2025-07-29 14:15:07 +00:00

the new way that once writes types. Deleted the old section and sample code and added a new section building on the Noddy example.
9 lines
286 B
Python
9 lines
286 B
Python
from distutils.core import setup, Extension
|
|
setup(name="noddy", version="1.0",
|
|
ext_modules=[
|
|
Extension("noddy", ["noddy.c"]),
|
|
Extension("noddy2", ["noddy2.c"]),
|
|
Extension("noddy3", ["noddy3.c"]),
|
|
Extension("noddy4", ["noddy4.c"]),
|
|
])
|
|
|