forked from hydralabs/pyamf
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
51 lines (39 loc) · 1.52 KB
/
setup.cfg
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
[epydoc]
# The documented project's name.
name: PyAMF API Documentation
# The documented project's URL.
url: http://pyamf.org/
# The list of objects to document.
modules: pyamf, cpyamf
# Don't examine in any way the modules whose dotted name match this
# regular expression pattern.
exclude: tests*
# The "top" page for the documentation. Can be a URL, the name
# of a module or class, or one of the special names "trees.html",
# "indices.html", or "help.html"
top: pyamf
# The type of output that should be generated. Should be one
# of: html, text, latex, dvi, ps, pdf.
output: html
# The path to the output directory. May be relative or absolute.
target: doc/build/api
# If True, don't try to use colors or cursor control when doing
# textual output. The default False assumes a rich text prompt.
simple-term: 0
# An integer indicating how verbose epydoc should be. The default
# value is 0; negative values will supress warnings and errors;
# positive values will give more verbose output.
verbosity: 0
# Whether or not to list each module's imports.
imports: yes
# Whether or not to include syntax highlighted source code in
# the output (HTML only).
sourcecode: yes
# 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",
# "umlclasstree". Use "all" to include all graph types.
#graph: umlclasstree
# The path to the Graphviz "dot" executable, used to generate
# graphs.
#dotpath: /usr/local/bin/dot