view setup.py.in @ 29:6d75691c5c07 task

Modified build configuration in the hope that it will be more stable.
author David Grundberg <individ@acc.umu.se>
date Mon, 04 May 2009 19:38:17 +0200
parents 4da14cce0890
children 798efee55cd0
line wrap: on
line source

#!/usr/bin/python
# -*- coding: utf-8; c-basic-offset: 3; indent-tabs-mode: nil; tab-width: 3; -*-
# @configure_input@

from distutils.core import setup, Extension

setup(
   name = 'pytave',
   version = '@PACKAGE_VERSION@',
   author = '@PACKAGE_NAME@ team',
   author_email = '@PACKAGE_BUGREPORT@',
   package_dir = {'pytave' : '@srcdir@/package'},
   packages = ['pytave'],
   ext_modules = [
      Extension('pytave/_pytave',
         language = "c++",
         sources = [
         '@srcdir@/octave_to_python.cc',
         '@srcdir@/pytave.cc',
         '@srcdir@/exceptions.cc',
         '@srcdir@/python_to_octave.cc',
         ],
         depends = [
         '@srcdir@/arrayobjectdefs.h',
         '@srcdir@/config.h',
         '@srcdir@/octave_to_python.h',
         '@srcdir@/pytavedefs.h',
         '@srcdir@/exceptions.h',
         '@srcdir@/python_to_octave.h'
         ],
         
         # TODO: Check whether paths work on Windows or not.
         # The file separator might be wrong. (Must be / in setup.cfg)
         include_dirs = ['@OCTAVE_INCLUDEDIR@', '@abs_builddir@', '@srcdir@'], # Python always included.
         define_macros = [('HAVE_CONFIG_H', '1')],
         library_dirs = ['@OCTAVE_LIBRARYDIR@'],
         runtime_library_dirs = ['@PYTAVE_OCTAVE_RPATH@'],
         libraries = ['octinterp', 'octave', 'cruft', '@BOOST_PYTHON_LIB@']
      )
   ]  
)