Skip to content

Commit 295b3bf

Browse files
authored
Added project long description (#5)
1 parent dcc1565 commit 295b3bf

File tree

3 files changed

+21
-4
lines changed

3 files changed

+21
-4
lines changed

README

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,10 @@
11
# Python Huawei Cloud Messaging
22

3-
Wrapper of huawei cloud notification API for sending push notification using python.
3+
Wrapper of huawei cloud messaging [(Push Kit)](https://developer.huawei.com/consumer/en/hms/huawei-pushkit/) for sending push notification using python.
4+
5+
## Home page
6+
7+
https://pypi.org/project/pyhcm/
48

59
## Install
610
```pip install pyhcm```

README.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,10 @@
11
# Python Huawei Cloud Messaging
22

3-
Wrapper of huawei cloud notification API for sending push notification using python.
3+
Wrapper of huawei cloud messaging [(Push Kit)](https://developer.huawei.com/consumer/en/hms/huawei-pushkit/) for sending push notification using python.
4+
5+
## Home page
6+
7+
https://pypi.org/project/pyhcm/
48

59
## Install
610
```pip install pyhcm```

setup.py

Lines changed: 11 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,21 @@
11
from distutils.core import setup
2+
from os import path
23

3-
version = '1.0.6.1'
4+
version = '1.0.6.2'
5+
long_description = ''
6+
7+
current_directory = path.abspath(path.dirname(__file__))
8+
9+
with open(path.join(current_directory, 'README.md'), encoding='utf-8') as file:
10+
long_description = file.read()
411

512
setup(
613
name='pyhcm',
714
packages=['pyhcm'],
815
version=f'{version}', license='MIT',
9-
description='Wrapper of api push huawei for sending notification push using python.',
16+
description='Wrapper of huawei cloud messaging (Push Kit) for sending push notification using python.',
17+
long_description=long_description,
18+
long_description_content_type='text/markdown',
1019
author='Ulises Martinez Adon',
1120
author_email='umartinezadon@outlook.com',
1221
url='https://github.com/umartinez22',

0 commit comments

Comments
 (0)