summaryrefslogtreecommitdiff
path: root/scipy/setup.py
diff options
context:
space:
mode:
authorTravis Oliphant <oliphant@enthought.com>2005-09-26 20:39:13 +0000
committerTravis Oliphant <oliphant@enthought.com>2005-09-26 20:39:13 +0000
commit64c9050515e3cfa7ad095299f9648ebc5530a823 (patch)
tree6ea6a3811965788d4e0c9327188a942a899225b9 /scipy/setup.py
parent45d01a4be1c4221132ba46d687e6af3a8df3329b (diff)
downloadnumpy-64c9050515e3cfa7ad095299f9648ebc5530a823.tar.gz
Moved weave to be a sub-package of scipy (so as not to conflict with any already installed weave which uses Numeric.
Diffstat (limited to 'scipy/setup.py')
-rw-r--r--scipy/setup.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/scipy/setup.py b/scipy/setup.py
index 60727543a..02a1acd07 100644
--- a/scipy/setup.py
+++ b/scipy/setup.py
@@ -5,6 +5,7 @@ def configuration(parent_package='',top_path=None):
from scipy.distutils.misc_util import Configuration
config = Configuration('scipy',parent_package,top_path)
config.add_subpackage('distutils')
+ config.add_subpackage('weave')
config.add_subpackage('test')
config.add_subpackage('base')
config.add_subpackage('lib',os.path.join(config.local_path,'corelib'))