summaryrefslogtreecommitdiff
path: root/scipy/weave/setup.py
diff options
context:
space:
mode:
authorTravis Oliphant <oliphant@enthought.com>2006-01-02 08:26:24 +0000
committerTravis Oliphant <oliphant@enthought.com>2006-01-02 08:26:24 +0000
commit4712a37b93832933a46376ee99339f9040ba3670 (patch)
tree8a3de8500925061b0f2368fae2d50159dbea206f /scipy/weave/setup.py
parentb5ba0003def4cfa43b29d29df8f085d09609707b (diff)
downloadnumpy-4712a37b93832933a46376ee99339f9040ba3670.tar.gz
Moved weave to scipy
Diffstat (limited to 'scipy/weave/setup.py')
-rwxr-xr-xscipy/weave/setup.py22
1 files changed, 0 insertions, 22 deletions
diff --git a/scipy/weave/setup.py b/scipy/weave/setup.py
deleted file mode 100755
index bda6e0a06..000000000
--- a/scipy/weave/setup.py
+++ /dev/null
@@ -1,22 +0,0 @@
-#!/usr/bin/env python
-import os
-def configuration(parent_package='',top_path=None):
- from scipy.distutils.misc_util import Configuration
- config = Configuration('weave',parent_package,top_path)
- config.add_data_dir('tests')
- config.add_data_dir('scxx')
- config.add_data_dir(os.path.join('blitz','blitz'))
- config.add_data_dir('doc')
- config.add_data_dir('examples')
- return config
-
-if __name__ == '__main__':
- from scipy.distutils.core import setup
- from weave_version import weave_version
- setup(version = weave_version,
- description = "Tools for inlining C/C++ in Python",
- author = "Eric Jones",
- author_email = "eric@enthought.com",
- licence = "SciPy License (BSD Style)",
- url = 'http://www.scipy.org',
- **configuration(top_path='').todict())