root/trunk/examples/arraytest/setup.py

Revision 113, 187 bytes (checked in by KirkMcDonald, 2 years ago)

* Improved Pyd's handling of arrays.
* Added Repr
* Added arraytest

Line 
1 from celerid.support import setup, Extension
2
3 projName = 'arraytest'
4
5 setup(
6     name=projName,
7     version='0.1',
8     ext_modules=[
9         Extension(projName, ['arraytest.d'])
10     ],
11 )
Note: See TracBrowser for help on using the browser.