From cfc3dd061c4d83e13ab1c0849d4b02d87f608377 Mon Sep 17 00:00:00 2001
From: Fize Jacques <jacques.fize@cirad.fr>
Date: Wed, 11 Sep 2019 00:02:35 +0200
Subject: [PATCH] UPDATE README + COMPLETE REQUIREMENTS

---
 README.md        | 19 +++++++++++++++++--
 app.py           |  2 +-
 requirements.txt |  2 ++
 3 files changed, 20 insertions(+), 3 deletions(-)

diff --git a/README.md b/README.md
index 91539eb..925db26 100644
--- a/README.md
+++ b/README.md
@@ -1,3 +1,18 @@
-# these_visu_matching
+# Visualization Tool for heterogeneous textual data matching
 
-Visualisation tools for matching graphs
\ No newline at end of file
+This tool is a web-application that allows to visualize and browse document matching based on a specific representation and similarity measure.
+
+# Requirements
+
+* Python 3
+* Linux and Mac OS X
+* OpenOffice (for *.doc* file preview)
+
+
+# Launch the program
+To run the app :
+
+```bash
+python3 app.py
+```
+Then, open your browser at the following address : http://127.0.0.1:5000/
\ No newline at end of file
diff --git a/app.py b/app.py
index d84c2cc..bcce6e1 100644
--- a/app.py
+++ b/app.py
@@ -11,7 +11,7 @@ app = Flask(__name__)
 
 @app.route('/')
 def hello_world():
-    return render_template("graph.html", filename="graph_files/bog.json")
+    return render_template("graph.html", filename="graph_files/BVLAC_MCS_str_object.npy.bz2.json")
 
 def filename_header(filename):
     format2font_awesome = {
diff --git a/requirements.txt b/requirements.txt
index cef5a16..c6bbbe9 100644
--- a/requirements.txt
+++ b/requirements.txt
@@ -1,2 +1,4 @@
 Flask
 gunicorn
+mammoth
+pandas
-- 
GitLab