mirror of
https://github.com/python/cpython.git
synced 2024-12-01 11:15:56 +01:00
6c71091fbe
the new way that once writes types. Deleted the old section and sample code and added a new section building on the Noddy example.
10 lines
286 B
Python
10 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"]),
|
|
])
|
|
|