Merge pull request #29 from pyohei/master

Fix setup script to read details from PyPI
diff --git a/setup.py b/setup.py
index caf9d1e..16a6930 100644
--- a/setup.py
+++ b/setup.py
@@ -3,7 +3,7 @@
 from distutils.core import setup
 
 try:
-    with open('README') as f:
+    with open('README.rst') as f:
         long_description = f.read()
 except:
     long_description = ''
@@ -28,6 +28,7 @@
         'Programming Language :: Python :: 3.3',
         'Programming Language :: Python :: 3.4',
         'Programming Language :: Python :: 3.5',
+        'Programming Language :: Python :: 3.6',
     ],
     license='GNU LGPL v2.1',
     long_description=long_description,