We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cb2c254 commit 94558e3Copy full SHA for 94558e3
setup.py
@@ -1,10 +1,16 @@
1
-from distutils.core import setup
+from setuptools import setup
2
+
3
+with open('README.md') as f:
4
+ long_description = f.read()
5
6
setup(
7
name = 'gsmHat',
8
packages = ['gsmHat'],
- version = '0.4',
9
+ version = '0.4.2',
10
license='MIT',
11
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",
14
author = 'Tarek Tounsi',
15
author_email = 'software@tounsi.de',
16
url = 'https://github.com/Civlo85/gsmHat',
0 commit comments