summaryrefslogtreecommitdiff
path: root/numpy/distutils/numpy_distribution.py
Commit message (Collapse)AuthorAgeFilesLines
* 2to3: Put `from __future__ import division in every python file.Charles Harris2013-03-011-0/+2
| | | | | | | | This should be harmless, as we already are division clean. However, placement of this import takes some care. In the future a script can be used to append new features without worry, at least until such time as it exceeds a single line. Having that ability will make it easier to deal with absolute imports and printing updates.
* Put scons data into its own class.David Cournapeau2009-10-011-15/+0
|
* Add add_installed_pkg_config function, for automatic pkg-config-like ↵David Cournapeau2009-07-261-0/+2
| | | | generation/handling.
* Installing a clib now works.David Cournapeau2009-07-261-0/+2
| | | | | | | | Installable libraries are built exactly like conventional clib (they are added to the NumpyDistribution instance libraries member, and build_clib is not aware of the libraries/installable libraries distinction). Everything is done in the install_clib. The library cannot be used yet by external code, though.
* Use a custom NumpyDistribution instead of distutils Distribution, to handleDavid Cournapeau2008-01-061-0/+28
scons scripts.