I donโt know where else to find it, but I would like to mention that itโs actually not so difficult to build if you have a numpy source and an MSVC compiler.
Numpy builds using the python distutils package, and as such deals with manifest files. If you use VC9, you can probably go straight ahead.
I did this today using the VC10 compiler, and as such was supposed to modify the distutils package (msvc9compiler.py) so as not to process any manifest. I just commented on these lines. Then, before I built the package, I installed env var to point to my actual compiler:
set VS90COMNTOOLS=%VS100COMNTOOLS% c:\python27_64\python.exe setup.py build
And after the build, I will find the numpy package in the build folder.
Numpy complains a lot about ATLAS and BLAS and more, but you end up with a compiled numpy that will run the tests successfully.
JCash source share