diff options
author | Pearu Peterson <pearu.peterson@gmail.com> | 2006-03-31 09:03:37 +0000 |
---|---|---|
committer | Pearu Peterson <pearu.peterson@gmail.com> | 2006-03-31 09:03:37 +0000 |
commit | d1573150a33df8c6eaf95189a6dcd6ee6f0c48ad (patch) | |
tree | bb32a1e823ce3ef39a75a6727cfb73d8ec4177d0 | |
parent | 471196b6dfc3f45decc18dc34e044842e5fa2c21 (diff) | |
download | numpy-d1573150a33df8c6eaf95189a6dcd6ee6f0c48ad.tar.gz |
Hint for using new setup configuration kw argument.
-rw-r--r-- | numpy/doc/DISTUTILS.txt | 3 |
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 |