From 76fba0f528e63e22310efa072ffa93e33cce2628 Mon Sep 17 00:00:00 2001 From: Martin Hjelmare Date: Thu, 5 Apr 2018 14:14:08 +0200 Subject: [PATCH] Clean up setup.py (#9) --- setup.py | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/setup.py b/setup.py index dbf7603..6d788dd 100755 --- a/setup.py +++ b/setup.py @@ -6,9 +6,9 @@ os.system('make rst') try: - readme = open('README.rst').read() + README = open('README.rst').read() except FileNotFoundError: - readme = '' + README = '' with open(os.path.join('leicacam', 'VERSION')) as version_file: VERSION = version_file.read().strip() @@ -17,7 +17,7 @@ name='leicacam', version=VERSION, description='Control Leica microscopes with python', - long_description=readme, + long_description=README, author='Arve Seljebu', author_email='arve.seljebu@gmail.com', url='https://github.com/arve0/leicacam', @@ -42,5 +42,7 @@ 'Programming Language :: Python :: 2.7', 'Programming Language :: Python :: 3', 'Programming Language :: Python :: 3.4', + 'Programming Language :: Python :: 3.5', + 'Programming Language :: Python :: 3.6', ], )