Last change
on this file since 9737 was
9617,
checked in by steve, 10 years ago
|
Got the stage where anuga (without pypar) builds successfully on travis ci
|
File size:
554 bytes
|
Rev | Line | |
---|
[9539] | 1 | from __future__ import division, print_function |
---|
| 2 | |
---|
| 3 | import os |
---|
| 4 | import sys |
---|
| 5 | |
---|
| 6 | from os.path import join |
---|
| 7 | |
---|
| 8 | def configuration(parent_package='',top_path=None): |
---|
| 9 | |
---|
| 10 | from numpy.distutils.misc_util import Configuration |
---|
| 11 | from numpy.distutils.system_info import get_info |
---|
| 12 | |
---|
| 13 | config = Configuration('structures', parent_package, top_path) |
---|
| 14 | |
---|
[9569] | 15 | config.add_data_dir('tests') |
---|
[9617] | 16 | config.add_data_dir(join('tests','data')) |
---|
[9539] | 17 | |
---|
| 18 | |
---|
| 19 | |
---|
| 20 | return config |
---|
| 21 | |
---|
| 22 | if __name__ == '__main__': |
---|
| 23 | from numpy.distutils.core import setup |
---|
| 24 | setup(configuration=configuration) |
---|
Note: See
TracBrowser
for help on using the repository browser.