diff options
author | edschofield <edschofield@localhost> | 2006-04-19 11:26:00 +0000 |
---|---|---|
committer | edschofield <edschofield@localhost> | 2006-04-19 11:26:00 +0000 |
commit | 847c32da33086fd525e230d0af6a8513593cee25 (patch) | |
tree | e30519a0a3f59332594899e63ddb04e6740b29a5 | |
parent | b66327781da7203a74b6daac8d6b3dbdeea6f590 (diff) | |
download | numpy-847c32da33086fd525e230d0af6a8513593cee25.tar.gz |
Added warning about config.add_headers to DISTUTILS.txt
-rw-r--r-- | numpy/doc/DISTUTILS.txt | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/numpy/doc/DISTUTILS.txt b/numpy/doc/DISTUTILS.txt index d5d456683..de2c0b28e 100644 --- a/numpy/doc/DISTUTILS.txt +++ b/numpy/doc/DISTUTILS.txt @@ -216,7 +216,9 @@ in writing setup scripts: ``<prefix>/include/pythonX.X/<config.name.replace('.','/')>/`` directory. If ``files`` item is a tuple then it's first argument specifies the installation suffix relative to - ``<prefix>/include/pythonX.X/`` path. + ``<prefix>/include/pythonX.X/`` path. This is a Python distutils + method; its use is discouraged for NumPy and SciPy in favour of + ``config.add_data_files(*files)``. + ``config.add_scripts(*files)`` --- prepend ``files`` to ``scripts`` list. Scripts will be installed under ``<prefix>/bin/`` directory. |