Skip to content

Commit ec85bca

Browse files
authored
Merge pull request #52 from merative/package_name_acd
fix: package naming
2 parents 71b32e6 + e7e6e51 commit ec85bca

2 files changed

Lines changed: 6 additions & 6 deletions

File tree

setup.py

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,8 @@
2121
import pkg_resources
2222

2323
__version__ = '1.11.2'
24-
PACKAGE_NAME = 'ibm_whcs_sdk'
25-
PACKAGE_DESC = 'This is the Watson Health Cognitive Services Python SDK containing ACD and IML',
24+
PACKAGE_NAME = 'acd_sdk'
25+
PACKAGE_DESC = 'This is the Annotator for Clincial Data Python SDK',
2626

2727
with open('requirements.txt') as f:
2828
install_requires = [str(req) for req in pkg_resources.parse_requirements(f)]
@@ -49,21 +49,21 @@
4949
license='Apache 2.0',
5050
install_requires=install_requires,
5151
tests_require=tests_require,
52-
author='IBM',
53-
author_email='dcweber@us.ibm.com',
52+
author='Merative',
53+
author_email='dlangst@merative.com',
5454
long_description=readme,
5555
long_description_content_type='text/markdown',
56-
url='https://github.com/IBM/whcs-python-sdk',
56+
url='https://github.com/Merative/whcs-python-sdk',
5757
packages=find_packages(),
5858
include_package_data=True,
5959
keywords='PACKAGE_NAME',
6060
classifiers=[
6161
'Programming Language :: Python',
6262
'Programming Language :: Python :: 3',
63-
'Programming Language :: Python :: 3.6',
6463
'Programming Language :: Python :: 3.7',
6564
'Programming Language :: Python :: 3.8',
6665
'Programming Language :: Python :: 3.9',
66+
'Programming Language :: Python :: 3.10',
6767
'Development Status :: 4 - Beta',
6868
'Intended Audience :: Developers',
6969
'License :: OSI Approved :: Apache Software License',

0 commit comments

Comments
 (0)