visualize_pyan_architecture.sh: change the options to get one clear graph of everything

This commit is contained in:
Juha Jeronen
2017-11-19 02:40:02 +02:00
parent 30d44c67a3
commit 4e5fabb804

View File

@@ -1,6 +1,4 @@
#!/bin/bash
./pyan.py pyan/*.py --no-uses --defines --grouped --nested-groups --colored --dot --annotated >defines.dot
./pyan.py pyan/*.py --uses --no-defines --grouped --nested-groups --colored --dot --annotated >uses.dot
dot -Tsvg defines.dot >defines.svg
dot -Tsvg uses.dot >uses.svg
echo -ne "Pyan architecture: generated defines.svg and uses.svg\n"
echo -ne "Pyan architecture: generating architecture.{dot,svg}\n"
./pyan.py pyan/*.py --no-defines --uses --colored --annotate --dot -V >architecture.dot 2>architecture.log
dot -Tsvg architecture.dot >architecture.svg