File tree Expand file tree Collapse file tree 2 files changed +31
-0
lines changed Expand file tree Collapse file tree 2 files changed +31
-0
lines changed Original file line number Diff line number Diff line change
1
+ # emacs: -*- mode: python; py-indent-offset: 4; indent-tabs-mode: nil -*-
2
+ # vi: set ft=python sts=4 ts=4 sw=4 et:
3
+ def configuration (parent_package = '' ,top_path = None ):
4
+ from numpy .distutils .misc_util import Configuration
5
+
6
+ config = Configuration ('legacy' , parent_package , top_path )
7
+
8
+ config .add_data_dir ('diffusion' )
9
+
10
+ return config
11
+
12
+ if __name__ == '__main__' :
13
+ from numpy .distutils .core import setup
14
+ setup (** configuration (top_path = '' ).todict ())
Original file line number Diff line number Diff line change
1
+ # emacs: -*- mode: python; py-indent-offset: 4; indent-tabs-mode: nil -*-
2
+ # vi: set ft=python sts=4 ts=4 sw=4 et:
3
+ def configuration (parent_package = '' ,top_path = None ):
4
+ from numpy .distutils .misc_util import Configuration
5
+
6
+ config = Configuration ('slicer' , parent_package , top_path )
7
+
8
+ config .add_data_dir ('diffusion' )
9
+ config .add_data_dir ('filtering' )
10
+ config .add_data_dir ('legacy' )
11
+ config .add_data_dir ('segmentation' )
12
+
13
+ return config
14
+
15
+ if __name__ == '__main__' :
16
+ from numpy .distutils .core import setup
17
+ setup (** configuration (top_path = '' ).todict ())
You can’t perform that action at this time.
0 commit comments