add launcher for pyreverse PDF diagrams generator

This commit is contained in:
Christophe Benz 2010-05-19 11:15:52 +02:00
commit 41a853dbad

15
tools/pyreverse.sh Executable file
View file

@ -0,0 +1,15 @@
#!/bin/bash
#
# Examples:
# pyreverse.sh weboob.backends.aum
#
# pyreverse is included in pylint Debian package
function usage() {
echo "pyreverse.sh <package_name>"
exit
}
[ -z "$1" ] && usage
pyreverse -p "$1" -a1 -s1 -o pdf "$1"