mirror of
https://github.com/python/cpython.git
synced 2025-12-09 02:35:14 +00:00
Added s setup module to make it easier to test the sample modules.
This commit is contained in:
parent
7050e929e6
commit
f0e38d1cd2
1 changed files with 8 additions and 0 deletions
8
Doc/ext/setup.py
Normal file
8
Doc/ext/setup.py
Normal file
|
|
@ -0,0 +1,8 @@
|
||||||
|
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"]),
|
||||||
|
])
|
||||||
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue