diff options
author | Travis Oliphant <oliphant@enthought.com> | 2005-09-26 19:01:50 +0000 |
---|---|---|
committer | Travis Oliphant <oliphant@enthought.com> | 2005-09-26 19:01:50 +0000 |
commit | 8ac222e304fdd59394725d27e82168a95eadaf1c (patch) | |
tree | c5cfd3f5ff09cc095c1c25620b4ff6887e77243c /setup.py | |
parent | ed8548a9686b70995ff1afdefbba437d84134d08 (diff) | |
download | numpy-8ac222e304fdd59394725d27e82168a95eadaf1c.tar.gz |
Adding weave and test
Diffstat (limited to 'setup.py')
-rwxr-xr-x | setup.py | 7 |
1 files changed, 4 insertions, 3 deletions
@@ -16,12 +16,13 @@ def setup_package(): try: config = Configuration( version = version, - maintainer = "Travis Oliphant", - maintainer_email = "oliphant.travis@ieee.org", + maintainer = "SciPy Developers", + maintainer_email = "scipy-dev@scipy.org", description = "Core SciPy", - url = "http://numpy.sourceforge.net", + url = "http://numeric.scipy.org", ) config.add_subpackage('scipy') + config.add_subpackage('weave') config.name = 'scipy_core' print config.name,'version',config.version setup( **config.todict() ) |