source:
python/vendor/Python-2.7.6/Doc/includes/setup.py
Last change on this file was 2, checked in by , 15 years ago | |
---|---|
|
|
File size: 285 bytes |
Line | |
---|---|
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 | Extension("noddy4", ["noddy4.c"]), |
8 | ]) |
Note:
See TracBrowser
for help on using the repository browser.