summaryrefslogtreecommitdiff
path: root/numpy
diff options
context:
space:
mode:
authorPearu Peterson <pearu.peterson@gmail.com>2006-03-31 09:03:37 +0000
committerPearu Peterson <pearu.peterson@gmail.com>2006-03-31 09:03:37 +0000
commitd1573150a33df8c6eaf95189a6dcd6ee6f0c48ad (patch)
treebb32a1e823ce3ef39a75a6727cfb73d8ec4177d0 /numpy
parent471196b6dfc3f45decc18dc34e044842e5fa2c21 (diff)
downloadnumpy-d1573150a33df8c6eaf95189a6dcd6ee6f0c48ad.tar.gz
Hint for using new setup configuration kw argument.
Diffstat (limited to 'numpy')
-rw-r--r--numpy/doc/DISTUTILS.txt3
1 files changed, 2 insertions, 1 deletions
diff --git a/numpy/doc/DISTUTILS.txt b/numpy/doc/DISTUTILS.txt
index 4620af0f0..d5d456683 100644
--- a/numpy/doc/DISTUTILS.txt
+++ b/numpy/doc/DISTUTILS.txt
@@ -74,7 +74,8 @@ Here follows a minimal example for a pure Python SciPy package
if __name__ == "__main__":
from numpy.distutils.core import setup
- setup(**configuration(top_path='').todict())
+ #setup(**configuration(top_path='').todict())
+ setup(configuration=configuration)
The first argument ``parent_package`` of the main configuration
function will contain a name of the parent SciPy package and the