[Epydoc-devel] --exclude pattern problem
Brought to you by:
edloper
|
From: <oti...@ya...> - 2008-03-29 19:00:15
|
Dear epydoc devels, since I got a solution for my problem in less than 24
hours, I just thought I may try my luck again :-))
In one of the modules I'm trying to generate the API for, a pretty big
external module is imported (numpy). I don't want to ship the numpy API
together with my module's API, but excluding "numpy" with the --exclude
switch doesn't help. An example:
foo/
foo/__init__.py
where __init__.py is:
import numpy as N
bar = 1
__all__ = ['bar','N']
ideally, when I generate the APi with:
epydoc --html --introspect-only --exclude numpy foo/__init__.py
I would like to see only my 'foo' module and my 'bar' variable documented,
and not the whole numpy tree, which is what happens regardless of the
exclude option.
What am I doing wrong?
thank you!
tiziano
____________________________________________________________________________________
Special deal for Yahoo! users & friends - No Cost. Get a month of Blockbuster Total Access now
http://tc.deals.yahoo.com/tc/blockbuster/text3.com
|