From: Stefan Behnel Date: Sun, 6 Feb 2011 16:50:04 +0000 (+0100) Subject: exclude non source directories from doc build X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=1dd4348f95dfd2a179089676c14ad33643253ccb;p=cython.git exclude non source directories from doc build --- diff --git a/conf.py b/conf.py index daf47c34..5607c5f7 100644 --- a/conf.py +++ b/conf.py @@ -40,6 +40,8 @@ source_suffix = '.rst' # The master toctree document. master_doc = 'index' +exclude_patterns = ['py*', 'build'] + # General substitutions. project = 'Cython' copyright = '2011, Stefan Behnel, Robert Bradshaw, Dag Sverre Seljebotn, Greg Ewing, William Stein, Gabriel Gellner, et al.'