From 94558e35fcab6d1472627be76dc5fa271b0efcae Mon Sep 17 00:00:00 2001 From: Tarek Date: Wed, 21 Oct 2020 00:57:29 +0200 Subject: [PATCH] Correction of some minor errors --- setup.py | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/setup.py b/setup.py index 97e5081..646c557 100755 --- a/setup.py +++ b/setup.py @@ -1,10 +1,16 @@ -from distutils.core import setup +from setuptools import setup + +with open('README.md') as f: + long_description = f.read() + setup( name = 'gsmHat', packages = ['gsmHat'], - version = '0.4', + version = '0.4.2', license='MIT', description = 'Using the Waveshare GSM/GPRS/GNSS Hat for Raspberry Pi with Python', + long_description = long_description, + long_description_content_type="text/markdown", author = 'Tarek Tounsi', author_email = 'software@tounsi.de', url = 'https://github.com/Civlo85/gsmHat',