From 5a09095cdab9ed922365d3c7124092ff2055c9b2 Mon Sep 17 00:00:00 2001 From: Tarek Date: Thu, 3 Sep 2020 20:41:10 +0200 Subject: [PATCH] Call and GPS functionality added --- gsmHat/__init__.py | 2 +- setup.py | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/gsmHat/__init__.py b/gsmHat/__init__.py index f21698c..00bcff5 100755 --- a/gsmHat/__init__.py +++ b/gsmHat/__init__.py @@ -1 +1 @@ -from gsmHat.gsmHat import GSMHat, SMS \ No newline at end of file +from gsmHat.gsmHat import GSMHat, SMS, GPS \ No newline at end of file diff --git a/setup.py b/setup.py index 81d78b0..4e27030 100755 --- a/setup.py +++ b/setup.py @@ -2,13 +2,13 @@ from distutils.core import setup setup( name = 'gsmHat', packages = ['gsmHat'], - version = '0.1', + version = '0.2', license='MIT', description = 'Using the Waveshare GSM/GPRS/GNSS Hat for Raspberry Pi with Python', author = 'Tarek Tounsi', author_email = 'software@tounsi.de', url = 'https://github.com/Civlo85/gsmHat', - download_url = 'https://github.com/Civlo85/gsmHat/archive/v_01.tar.gz', + download_url = 'https://github.com/Civlo85/gsmHat/archive/v_02.tar.gz', keywords = ['Waveshare', 'GSM', 'GPS', 'Raspberry', 'Pi'], install_requires=[ 'serial',