21
21
22
22
__version__ = '0.1.0'
23
23
PACKAGE_NAME = 'ibm_platform_services'
24
- PACKAGE_DESC = 'IBM Cloud Platform Services Python SDK client library '
24
+ PACKAGE_DESC = 'Python client library for IBM Cloud Platform Services '
25
25
26
26
with open ('requirements.txt' ) as f :
27
27
install_requires = [str (req ) for req in pkg_resources .parse_requirements (f )]
@@ -75,7 +75,7 @@ def finalize_options(self):
75
75
self .test_args = ['--strict' , '--verbose' , '--tb=long' , 'test/integration' ]
76
76
77
77
78
- setup (name = PACKAGE_NAME ,
78
+ setup (name = PACKAGE_NAME . replace ( '_' , '-' ) ,
79
79
version = __version__ ,
80
80
description = PACKAGE_DESC ,
81
81
license = 'Apache 2.0' ,
@@ -92,13 +92,16 @@ def finalize_options(self):
92
92
classifiers = [
93
93
'Programming Language :: Python' ,
94
94
'Programming Language :: Python :: 3' ,
95
+ 'Programming Language :: Python :: 3.5' ,
96
+ 'Programming Language :: Python :: 3.6' ,
97
+ 'Programming Language :: Python :: 3.7' ,
98
+ 'Programming Language :: Python :: 3.8' ,
95
99
'Development Status :: 4 - Beta' ,
96
100
'Intended Audience :: Developers' ,
97
101
'License :: OSI Approved :: Apache Software License' ,
98
102
'Operating System :: OS Independent' ,
99
103
'Topic :: Software Development :: Libraries :: Python Modules' ,
100
- 'Topic :: Software Development :: Libraries :: Application '
101
- 'Frameworks' ,
104
+ 'Topic :: Software Development :: Libraries :: Application Frameworks' ,
102
105
],
103
106
zip_safe = True
104
107
)
0 commit comments