My initial updates to depgraph2dot.py and py2depgraph.py.
[depgraph.git] / README
diff --git a/README b/README
new file mode 100644 (file)
index 0000000..cbc6e5f
--- /dev/null
+++ b/README
@@ -0,0 +1,13 @@
+Originals from: "Toby Dickenson" <toby@tarind.com>
+http://tarind.com/depgraph.html
+
+Generate python module dependency graphs using dot (graphviz package)
+$ python py2depgraph.py path/to/my/script.py | python depgraph2dot.py | dot -T png -o depgraph.png
+
+I added some code to also save the path of any modules, 
+so it would be easier to only print modules with particular paths, 
+or to make the boundary between python and other languages more clear.
+
+Now the default is to only print modules I wrote or those involving comedi,
+print shared extension modules in blue,
+and the shared libraries in green.