1

I'm generating an epydoc for a library of code, and there are a few testing files scattered throughout that I'd like to not include. I could use the --exclude generation option and rename the files, but I'm wondering if there's anything I can add to the files themselves that will be interpreted by epydoc as a command not to include/parse that file.

Tunaki
  • 132,869
  • 46
  • 340
  • 423
Nathan
  • 4,545
  • 6
  • 32
  • 49

2 Answers2

3

It would seem the answer to this question is no. If you want to exclude an element, the only option is to use

--exclude=PATTERN

Which excludes modules whose dotted name matches the regular expression PATTERN

Nathan
  • 4,545
  • 6
  • 32
  • 49
0

You can also specified the excluded file in the config file like:

exclude: my_module.my_class

Bruce Chou
  • 356
  • 2
  • 8