有没有办法从 epydoc 生成中排除特定文件?
我正在为代码库生成 epydoc,并且散布着一些我不想包含的测试文件。我可以使用 --exclude
生成选项并重命名文件,但我想知道是否可以向文件本身添加任何内容,这些内容将被 epydoc 解释为不包含/解析的命令那个文件。
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.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
这个问题的答案似乎是否定的。如果你想排除一个元素,唯一的选择是使用
排除点名称与正则表达式 PATTERN 匹配的模块
It would seem the answer to this question is no. If you want to exclude an element, the only option is to use
Which excludes modules whose dotted name matches the regular expression PATTERN
您还可以在配置文件中指定排除的文件,例如:
exclusion: my_module.my_class
You can also specified the excluded file in the config file like:
exclude: my_module.my_class