diff --git a/README.md b/README.md
--- a/README.md
+++ b/README.md
@@ -1,3 +1,11 @@
-1. `stack setup`
-2. `stack build`
-3. `stack exec music-exe` or `stack test`
+# Rewrite Inspector
+
+A terminal UI for inspecting steps taken by a rewriting process.
+Useful for the optimization phase of a compiler,
+or even evaluators of small languages.
+
+To use the library, the user's type of language expressions
+must be an instance of the `Diff` typeclass (see `app/Main.hs` for an example).
+
+
+
diff --git a/rewrite-inspector.cabal b/rewrite-inspector.cabal
--- a/rewrite-inspector.cabal
+++ b/rewrite-inspector.cabal
@@ -1,5 +1,5 @@
 name: rewrite-inspector
-version: 0.1.0.0
+version: 0.1.0.1
 cabal-version: >=1.10
 build-type: Simple
 license: BSD3
@@ -8,6 +8,7 @@
 stability: experimental
 homepage: http://github.com/omelkonian/rewrite-inspector/
 bug-reports: http://github.com/omelkonian/rewrite-inspector/issues
+category: rewriting, inspection, terminal, user interface
 synopsis: Inspection of rewriting steps
 description:
     A terminal UI for inspecting steps taken by a rewriting process.
