forked from wxGlade/wxGlade
-
Notifications
You must be signed in to change notification settings - Fork 0
/
epydoc.conf
38 lines (28 loc) · 1.06 KB
/
epydoc.conf
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
#epydoc.conf - configuration file for epydoc used to generate the developer documentation for wxGlade
[epydoc] # Epydoc section marker (required by ConfigParser)
# Information about the project.
name: wxGlade
url: http://wxglade.sourceforge.net/
# The list of modules to document. Modules can be named using
# dotted names, module filenames, or package directory names.
# This option may be repeated.
modules: ./
# Write html output to the directory "apidocs"
output: html
target: docs/apidocs
# imports
# Whether or not to list each module's imports.
imports: yes
# parse
# Whether or not parsing should be used to examine objects.
parse: yes
# introspect
# Whether or not introspection should be used to examine objects.
introspect: no
#for some reason using introspect creates many errors - Guy
# graph
# The list of graph types that should be automatically included
# in the output. Graphs are generated using the Graphviz "dot"
# executable. Graph types include: "classtree", "callgraph",
# "umlclass". Use "all" to include all graph types
graph: all