From 73c1559ba5a4482e80129144b66fc0f4b868dcd4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Peter=20Gardfj=C3=A4ll?= Date: Wed, 8 Apr 2020 20:41:36 +0200 Subject: [PATCH] setup.py: minor fix --- setup.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/setup.py b/setup.py index 031af67..b8bed0d 100644 --- a/setup.py +++ b/setup.py @@ -1,6 +1,6 @@ """Setup information for the Garmin Connect activity exporter.""" -from setuptools import setup, find_packages +from setuptools import setup, Extension from os import path # needed for Python 2.7 (ensures open() defaults to text mode with universal # newlines, and accepts an argument to specify the text encoding. @@ -24,7 +24,7 @@ test_requires = [ setup(name='garminexport', version='0.1.0', - description=('Garmin Connect activity exporter and backup tool'), + description='Garmin Connect activity exporter and backup tool', long_description=long_description, long_description_content_type='text/markdown', author='Peter GardfjÀll',