Last change
on this file 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
|
Line | |
---|
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 | |
---|
15 | config.add_data_dir('tests') |
---|
16 | config.add_data_dir(join('tests','data')) |
---|
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.