File: setup_io.py

package info (click to toggle)
python-scipy 0.3.2-6
  • links: PTS
  • area: main
  • in suites: sarge
  • size: 13,572 kB
  • ctags: 20,326
  • sloc: ansic: 87,138; fortran: 51,876; python: 47,747; cpp: 2,134; objc: 384; makefile: 175; sh: 83
file content (20 lines) | stat: -rwxr-xr-x 661 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#!/usr/bin/env python

import os
from scipy_distutils.core import Extension
from scipy_distutils.misc_util import get_path, dot_join, default_config_dict

def configuration(parent_package='',parent_path=None):
    package = 'io'
    local_path = get_path(__name__,parent_path)
    config = default_config_dict(package,parent_package)

    sources = ['numpyiomodule.c']
    sources = [os.path.join(local_path,x) for x in sources]
    ext = Extension(dot_join(parent_package,package,'numpyio'),sources)
    config['ext_modules'].append(ext)
    return config

if __name__ == '__main__':    
    from scipy_distutils.core import setup
    setup(**configuration())