summaryrefslogtreecommitdiffstats
path: root/lib/python2.7/site-packages/setoolsgui/networkx/version.py
diff options
context:
space:
mode:
Diffstat (limited to 'lib/python2.7/site-packages/setoolsgui/networkx/version.py')
-rw-r--r--lib/python2.7/site-packages/setoolsgui/networkx/version.py25
1 files changed, 25 insertions, 0 deletions
diff --git a/lib/python2.7/site-packages/setoolsgui/networkx/version.py b/lib/python2.7/site-packages/setoolsgui/networkx/version.py
new file mode 100644
index 0000000..7369f8b
--- /dev/null
+++ b/lib/python2.7/site-packages/setoolsgui/networkx/version.py
@@ -0,0 +1,25 @@
+"""
+Version information for NetworkX, created during installation.
+
+Do not add this file to the repository.
+
+"""
+
+import datetime
+
+version = '1.8.1'
+date = 'Sun Aug 4 07:56:54 2013'
+
+# Was NetworkX built from a development version? If so, remember that the major
+# and minor versions reference the "target" (rather than "current") release.
+dev = False
+
+# Format: (name, major, min, revision)
+version_info = ('networkx', '1', '8.1', None)
+
+# Format: a 'datetime.datetime' instance
+date_info = datetime.datetime(2013, 8, 4, 7, 56, 54, 416491)
+
+# Format: (vcs, vcs_tuple)
+vcs_info = (None, (None, None))
+