Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit f0e38d1

Browse files
author
Jim Fulton
committed
Added s setup module to make it easier to test the sample modules.
1 parent 7050e92 commit f0e38d1

1 file changed

Lines changed: 8 additions & 0 deletions

File tree

Doc/ext/setup.py

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
from distutils.core import setup, Extension
2+
setup(name="noddy", version="1.0",
3+
ext_modules=[
4+
Extension("noddy", ["noddy.c"]),
5+
Extension("noddy2", ["noddy2.c"]),
6+
Extension("noddy3", ["noddy3.c"]),
7+
])
8+

0 commit comments

Comments
 (0)