From 9f7a78297bc11716d3dd33e7ed76753c95065327 Mon Sep 17 00:00:00 2001 From: pyohei Date: Mon, 11 Jun 2018 07:12:11 +0900 Subject: [PATCH 1/2] Add tag of Python3.6 --- setup.py | 1 + 1 file changed, 1 insertion(+) diff --git a/setup.py b/setup.py index caf9d1e..0ec750e 100644 --- a/setup.py +++ b/setup.py @@ -28,6 +28,7 @@ setup( '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, From f1a2ad66dffcefccf0c4a90c59102bafde6501e4 Mon Sep 17 00:00:00 2001 From: pyohei Date: Mon, 11 Jun 2018 07:28:57 +0900 Subject: [PATCH 2/2] Fix setup.py to be able to read README.rst on PyPI. --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 0ec750e..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 = ''