Lines Matching refs:demo
64 module1 = Extension('demo',
65 sources = ['demo.c'])
69 description = 'This is a demo package',
73 With this :file:`setup.py`, and a file :file:`demo.c`, running ::
77 will compile :file:`demo.c`, and produce an extension module named ``demo`` in
80 :file:`demo.so` or :file:`demo.pyd`.
96 defines an extension named ``demo`` which is build by compiling a single source
97 file, :file:`demo.c`.
107 module1 = Extension('demo',
113 sources = ['demo.c'])
117 description = 'This is a demo package',
122 This is really just a demo package.
135 …0 -I/usr/local/include -I/usr/local/include/python2.2 -c demo.c -o build/temp.linux-i686-2.2/demo.o
137 …gcc -shared build/temp.linux-i686-2.2/demo.o -L/usr/local/lib -ltcl83 -o build/lib.linux-i686-2.2/…