source: trunk/python/setup.py.in @ 588

Last change on this file since 588 was 548, checked in by dkearney, 18 years ago

added libscew as a library needed to compile python's bindings to the c++ librappture

File size: 840 bytes
Line 
1from distutils.core import setup, Extension
2
3rp_install_dir = '@prefix@'
4
5module = Extension('Rappture.Units',
6                   include_dirs = [rp_install_dir+'/include'],
7                   sources = [ 'Rappture/PyRpUnits.cc' ],
8                   library_dirs = [ rp_install_dir+'/lib' ],
9                   libraries = [ 'rappture', 'scew' ] )
10
11setup(  name='Rappture',
12        version='0.1',
13        description='Rapid Application Infrastructure library for nanoHUB.org',
14        url='http://www.nanohub.org/',
15        py_modules=[ 'Rappture.library',
16                     'Rappture.interface',
17                     'Rappture.number',
18                     'Rappture.queue',
19                     'Rappture.signalHandler',
20                     'Rappture.tools',
21                     'Rappture.result'],
22        ext_modules=[module]
23  )
Note: See TracBrowser for help on using the repository browser.