Skip to content

Commit 94558e3

Browse files
committed
Correction of some minor errors
1 parent cb2c254 commit 94558e3

File tree

1 file changed

+8
-2
lines changed

1 file changed

+8
-2
lines changed

setup.py

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,16 @@
1-
from distutils.core import setup
1+
from setuptools import setup
2+
3+
with open('README.md') as f:
4+
long_description = f.read()
5+
26
setup(
37
name = 'gsmHat',
48
packages = ['gsmHat'],
5-
version = '0.4',
9+
version = '0.4.2',
610
license='MIT',
711
description = 'Using the Waveshare GSM/GPRS/GNSS Hat for Raspberry Pi with Python',
12+
long_description = long_description,
13+
long_description_content_type="text/markdown",
814
author = 'Tarek Tounsi',
915
author_email = 'software@tounsi.de',
1016
url = 'https://github.com/Civlo85/gsmHat',

0 commit comments

Comments
 (0)