Staging
v0.8.1
Revision 470f33f50b446f17c2729899cdea4edd46b4f0da authored by Georg Brandl on 10 April 2012, 17:27:27 UTC, committed by Georg Brandl on 10 April 2012, 17:27:27 UTC
1 parent aa589b3
Raw File
setup.py
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"]),
         ])
back to top