Skip to content

Commit d333765

Browse files
committed
Changed folder structure
1 parent 24facea commit d333765

File tree

4 files changed

+21
-22
lines changed

4 files changed

+21
-22
lines changed

MANIFEST

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# file GENERATED by distutils, do NOT edit
22
setup.cfg
33
setup.py
4-
phcm/__init__.py
5-
phcm/hcm_notification.py
4+
pyhcm/__init__.py
5+
pyhcm/hcm_notification.py
File renamed without changes.

pyhcm/__init__.py

Whitespace-only changes.

setup.py

Lines changed: 19 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -1,24 +1,23 @@
11
from distutils.core import setup
22

3-
version = '1.0.2'
3+
version = '1.0.3'
44

55
setup(
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
9-
license='MIT', # Chose a license from here: https://help.github.com/articles/licensing-a-repository
10-
description = 'Wrapper of api push huawei for sending notification push using python.', # Give a short description about your library
11-
author = 'Ulises Martinez Adon', # Type in your name
12-
author_email = 'umartinezadon@outlook.com', # Type in your E-Mail
13-
url = 'https://github.com/umartinez22', # Provide either the link to your github or to your website
14-
download_url = f'https://github.com/umartinez22/python-huawei-cloud-messaging/archive/v_{version}.tar.gz', # I explain this later on
15-
keywords = ['Huawei', 'cloud', 'messaging', 'notification'], # Keywords that define your package best
16-
install_requires=[],
17-
classifiers=[
18-
'Development Status :: 3 - Alpha', # Chose either "3 - Alpha", "4 - Beta" or "5 - Production/Stable" as the current state of your package
19-
'Intended Audience :: Developers', # Define that your audience are developers
20-
'Topic :: Software Development :: Build Tools',
21-
'License :: OSI Approved :: MIT License', # Again, pick a license
22-
'Programming Language :: Python'
23-
],
24-
)
6+
name='pyhcm',
7+
packages=['pyhcm'],
8+
version=f'{version}', license='MIT',
9+
description='Wrapper of api push huawei for sending notification push using python.',
10+
author='Ulises Martinez Adon',
11+
author_email='umartinezadon@outlook.com',
12+
url='https://github.com/umartinez22',
13+
download_url=f'https://github.com/umartinez22/python-huawei-cloud-messaging/archive/v_{version}.tar.gz',
14+
keywords=['Huawei', 'cloud', 'messaging', 'notification'],
15+
install_requires=[],
16+
classifiers=[
17+
'Development Status :: 3 - Alpha',
18+
'Intended Audience :: Developers',
19+
'Topic :: Software Development :: Build Tools',
20+
'License :: OSI Approved :: MIT License',
21+
'Programming Language :: Python'
22+
],
23+
)

0 commit comments

Comments
 (0)