Switch README to ReStructuredText format so PyPI is happy

Change-Id: I40f1ef32a4a2b8e816e53867f37a255fa2244bf4
diff --git a/README.md b/README.md
deleted file mode 100644
index ea9fb6a..0000000
--- a/README.md
+++ /dev/null
@@ -1,34 +0,0 @@
-# PyVOLTHA
-
-PyVOLTHA is a collection of shared Python libraries that are use to create Python-based
-[VOLTHA](https://wiki.opencord.org/display/CORD/VOLTHA) Device Adapters and other Python
-utilities (CLI, ...) that need to work with the VOLTHA v2.0 and later Golang core.
-
-Initially PyVOLTHA will target only Python 2.7, but contributors are encouraged to write
-or refactor any library methods to eventually support Python 3.6.x or later.
-
-## Installation instruction
-```bash
-pip install pyvoltha
-```
-
-## Release History
-
-| Version | Date       | Notes                                |
-| :-----: | :--------: | :----------------------------------- |
-| v0.1.0  | 2019-02-01 | Initial pypy release available. This is primarily for testing out pip install support and is not expected to be useful outside of that. | 
-
-### Detailed Release History
-
-#### v0.1.0 (2019-02-01)
-- Experimental release of pyvoltha to test pip install capabilities.  This version
-  has manually created protobuf definitions and will probably not be very usable
-  by any device adapters.
-- This version is not under source control management at this time. Initial VCS
-  support is anticipated in the very near future when portions of this project
-  can be consumed by a device adapter developer.
-- Protobuf files in the 'proto' directory were hand copied over from the voltha-go
-  repository. These will eventually be in a separate repo that developers will
-  need to include.
-- Most all import paths fixed but that does not mean everything works
-- A fair number of original unit tests are working after import changes. Others need work.
\ No newline at end of file
diff --git a/README.rst b/README.rst
new file mode 100644
index 0000000..fa537f9
--- /dev/null
+++ b/README.rst
@@ -0,0 +1,51 @@
+PyVOLTHA
+========
+
+PyVOLTHA is a collection of shared Python libraries that are use to
+create Python-based
+`VOLTHA <https://wiki.opencord.org/display/CORD/VOLTHA>`__ Device
+Adapters and other Python utilities (CLI, …) that need to work with the
+VOLTHA v2.0 and later Golang core.
+
+Initially PyVOLTHA will target only Python 2.7, but contributors are
+encouraged to write or refactor any library methods to eventually
+support Python 3.6.x or later.
+
+Installation instruction
+------------------------
+
+.. code:: bash
+
+   pip install pyvoltha
+
+Release History
+---------------
+
++---------+------------+-----------------------------------------------+
+| Version | Date       | Notes                                         |
++=========+============+===============================================+
+| v0.1.0  | 2019-02-01 | Initial pypy release available. This is       |
+|         |            | primarily for testing out pip install support |
+|         |            | and is not expected to be useful outside of   |
+|         |            | that.                                         |
++---------+------------+-----------------------------------------------+
+
+Detailed Release History
+~~~~~~~~~~~~~~~~~~~~~~~~
+
+v0.1.0 (2019-02-01)
+^^^^^^^^^^^^^^^^^^^
+
+-  Experimental release of pyvoltha to test pip install capabilities.
+   This version has manually created protobuf definitions and will
+   probably not be very usable by any device adapters.
+-  This version is not under source control management at this time.
+   Initial VCS support is anticipated in the very near future when
+   portions of this project can be consumed by a device adapter
+   developer.
+-  Protobuf files in the ‘proto’ directory were hand copied over from
+   the voltha-go repository. These will eventually be in a separate repo
+   that developers will need to include.
+-  Most all import paths fixed but that does not mean everything works
+-  A fair number of original unit tests are working after import
+   changes. Others need work.
diff --git a/VERSION b/VERSION
index 0c62199..ee1372d 100644
--- a/VERSION
+++ b/VERSION
@@ -1 +1 @@
-0.2.1
+0.2.2
diff --git a/setup.py b/setup.py
index 4b60c7e..a1a6056 100644
--- a/setup.py
+++ b/setup.py
@@ -29,7 +29,7 @@
 version_file = path.join(setup_dir, "VERSION")
 
 # Get the long description from the README file
-with open(path.join(setup_dir, 'README.md'), encoding='utf-8') as f:
+with open(path.join(setup_dir, 'README.rst'), encoding='utf-8') as f:
     long_description = f.read()
 
 with open(version_file) as version_file: