From 68327f5a10f766d0f151fc5fad285e8060d483fe Mon Sep 17 00:00:00 2001 From: Eddie Hebert Date: Fri, 1 Feb 2013 11:33:32 -0500 Subject: [PATCH] Removes documentation references to pavement. The references to pavement were causing confusion on what libraries are needed for installation. --- docs/extensions.rst | 20 -------------------- docs/installation.rst | 25 ------------------------- 2 files changed, 45 deletions(-) diff --git a/docs/extensions.rst b/docs/extensions.rst index 639a58c1..4f4cc936 100644 --- a/docs/extensions.rst +++ b/docs/extensions.rst @@ -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 ====== diff --git a/docs/installation.rst b/docs/installation.rst index 0ece920c..9e40c48f 100644 --- a/docs/installation.rst +++ b/docs/installation.rst @@ -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: