-
Notifications
You must be signed in to change notification settings - Fork 34
/
py2puml.ini
50 lines (44 loc) · 1.32 KB
/
py2puml.ini
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
[puml]
# puml prolog is useful to customize the style of produced diagrams
# See http://plantuml.com/class-diagram#Skinparam
# and http://plantuml.com/commons for details
prolog = scale 1.5
skinparam backgroundcolor AntiqueWhite/Gold
skinparam title {
BorderRoundCorner 15
BorderThickness 2
BorderColor MidnightBlue
BackgroundColor Aqua-CadetBlue
}
skinparam class {
BackgroundColor NavajoWhite
ArrowColor MidnightBlue
BorderColor Gold
}
title "Multiple inheritance example"
center footer <img:img_footer.png>
# puml epilog allows to add associations and notes
# to add information to generated classes.
# Usually project-specific, define it in a file
# "py2uml.ini" in your project's root directory.
epilog = note bottom of Calendar
the <i>advance()</i> method
advances the date
by one day,
end note
''
note bottom of Clock
the <i>tick()</i> method
advances the clock
by one second,
end note
# Below a few ideas of further configuration, not implemented yet.
[methods]
omit-self = False
write-arg-list = True
[members]
[class-variables]
[module]
write-variables = False
write-functions = False
write-globals = False