Skip to content

Commit 24facea

Browse files
committed
Renamed package
1 parent 73448a7 commit 24facea

File tree

6 files changed

+12
-5
lines changed

6 files changed

+12
-5
lines changed

.gitignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
11
.vscode
2-
/venv
2+
/venv
3+
dist

dist/phcm-1.0.0.tar.gz

-1.95 KB
Binary file not shown.
File renamed without changes.
File renamed without changes.

readme.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,9 @@
22

33
Wrapper of api push huawei for sending notification push using python.
44

5+
## Install
6+
```pip install pyhcm```
7+
58
## Example
69

710
### Subcribers topic

setup.py

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,17 @@
11
from distutils.core import setup
2+
3+
version = '1.0.2'
4+
25
setup(
3-
name = 'phcm', # How you named your package folder (MyLib)
4-
packages = ['phcm'], # Chose the same as "name"
5-
version = '1.0.0', # Start with a small number and increase it with every change you make
6+
name = 'pyhcm', # How you named your package folder (MyLib)
7+
packages = ['pyhcm'], # Chose the same as "name"
8+
version = f'{version}', # Start with a small number and increase it with every change you make
69
license='MIT', # Chose a license from here: https://help.github.com/articles/licensing-a-repository
710
description = 'Wrapper of api push huawei for sending notification push using python.', # Give a short description about your library
811
author = 'Ulises Martinez Adon', # Type in your name
912
author_email = 'umartinezadon@outlook.com', # Type in your E-Mail
1013
url = 'https://github.com/umartinez22', # Provide either the link to your github or to your website
11-
download_url = 'https://github.com/umartinez22/python-huawei-cloud-messaging/archive/v_1.0.1.tar.gz', # I explain this later on
14+
download_url = f'https://github.com/umartinez22/python-huawei-cloud-messaging/archive/v_{version}.tar.gz', # I explain this later on
1215
keywords = ['Huawei', 'cloud', 'messaging', 'notification'], # Keywords that define your package best
1316
install_requires=[],
1417
classifiers=[

0 commit comments

Comments
 (0)