~ubuntu-branches/ubuntu/raring/python-scipy/raring-proposed

« back to all changes in this revision

Viewing changes to Lib/linalg/setup_atlas_version.py

  • Committer: Bazaar Package Importer
  • Author(s): Matthias Klose
  • Date: 2007-01-07 14:12:12 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20070107141212-mm0ebkh5b37hcpzn
* Remove build dependency on python-numpy-dev.
* python-scipy: Depend on python-numpy instead of python-numpy-dev.
* Package builds on other archs than i386. Closes: #402783.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
## Automatically adapted for scipy Oct 18, 2005 by
 
2
 
1
3
#!/usr/bin/env python
2
4
 
3
5
import os
4
6
from distutils.core import Extension
5
 
from scipy_distutils.misc_util import get_path, default_config_dict
6
 
from scipy_distutils.system_info import get_info,AtlasNotFoundError
 
7
from numpy.distutils.misc_util import get_path, default_config_dict
 
8
from numpy.distutils.system_info import get_info,AtlasNotFoundError
7
9
 
8
10
def configuration (parent_package=''):
9
11
    package = 'linalg'
22
24
    config['ext_modules'].append(ext)
23
25
    return config
24
26
 
25
 
if __name__ == '__main__':    
 
27
if __name__ == '__main__':
26
28
    from distutils.core import setup
27
29
    setup(**configuration())