From: Jim Fulton Date: Sat, 28 Jun 2003 11:54:20 +0000 (+0000) Subject: Added s setup module to make it easier to test the sample modules. X-Git-Tag: v2.3c1~288 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=f0e38d1cd23c3a053fb27daaa1df3142b3667a58;p=python Added s setup module to make it easier to test the sample modules. --- diff --git a/Doc/ext/setup.py b/Doc/ext/setup.py new file mode 100644 index 0000000000..5b99cfe955 --- /dev/null +++ b/Doc/ext/setup.py @@ -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"]), + ]) +