commit | 8ec7f656134b1230ab23003a94ba3266d7064122 | [log] [tgz] |
---|---|---|
author | Georg Brandl <georg@python.org> | Wed Aug 15 14:28:01 2007 +0000 |
committer | Georg Brandl <georg@python.org> | Wed Aug 15 14:28:01 2007 +0000 |
tree | bc730d5fb3302dc375edd26b26f750d609b61d72 | |
parent | f56181ff53ba00b7bed3997a4dccd9a1b6217b57 [diff] [blame] |
Move the 2.6 reST doc tree in place.
diff --git a/Doc/includes/setup.py b/Doc/includes/setup.py new file mode 100644 index 0000000..b853d23 --- /dev/null +++ b/Doc/includes/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"]), + Extension("noddy4", ["noddy4.c"]), + ])