1
1
from distutils .core import setup
2
2
3
- version = '1.0.2 '
3
+ version = '1.0.3 '
4
4
5
5
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