Removes documentation references to pavement.

The references to pavement were causing confusion on what libraries
are needed for installation.
This commit is contained in:
Eddie Hebert
2013-02-01 11:33:32 -05:00
parent 079d7b322e
commit 68327f5a10
2 changed files with 0 additions and 45 deletions
-20
View File
@@ -54,26 +54,6 @@ Also make sure to code against Python 2.7 and numpy 1.6.1 header
files. If using Cython have it auto figure out the paths to ensurable
portability.
Building
========
In pavement.py ::
example = Extension(
"zipline/example", ["zipline/example.pyx"],
)
If you need Numpy::
example = Extension(
"zipline/example", ["zipline/example.pyx"],
include_dirs=[np.get_include()],
)
To build in development ::
$ paver build_ext --inplace
Pure C
======