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

« back to all changes in this revision

Viewing changes to Lib/gui_thread/setup_gui_thread.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
 
#!/usr/bin/env python
2
 
 
3
 
import os
4
 
from scipy_distutils.misc_util import get_path, default_config_dict
5
 
 
6
 
def configuration(parent_package='',parent_path=None):
7
 
    package = 'gui_thread'
8
 
    config = default_config_dict(package,parent_package)
9
 
    return config
10
 
 
11
 
if __name__ == '__main__':    
12
 
    from scipy_distutils.core import setup
13
 
    setup(maintainer = "SciPy Developers",
14
 
          maintainer_email = "scipy-dev@scipy.org",
15
 
          description = "SciPy test module",
16
 
          url = "http://www.scipy.org",
17
 
          license = "SciPy License (BSD Style)",
18
 
          **configuration())