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
======
-25
View File
@@ -36,31 +36,6 @@ To run tests::
$ nosetests
To build documentation::
$ paver apidocs html
# outputs to docs/_build/html
For an interactive shell::
$ paver ishell
For coverage information::
$ paver coverage
# outputs to cover/index.html
For line count::
$ paver sloccount
For syntax checking::
$ paver pyflakes
For building distributable egg::
$ paver bdist_egg
Tooling hints
================
:mod:`zipline` relies heavily on scientific python components (numpy, scikit, pandas, matplotlib, ipython, etc). Tooling up can be a pain, and it often involves managing a configuration including your OS, c/c++/fortran compilers, python version, and versions of numerous modules. I've found the following tools absolutely indispensable: