Skip to content

Commit

Permalink
fix: wrong pkg name
Browse files Browse the repository at this point in the history
  • Loading branch information
XieJiSS committed Jul 4, 2024
1 parent f19c19b commit 3fb3390
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -173,24 +173,24 @@ def initialize_options(self):
self.plat_name = self._determine_platform_tag()


packages = ['opencc', 'opencc.clib']
packages = ['ds-opencc', 'ds-opencc.clib']

version_info = get_version_info()
author_info = get_author_info()

setuptools.setup(
name='OpenCC',
name='ds-opencc',
version=version_info,
author=author_info[0],
author_email=author_info[1],
description=" Conversion between Traditional and Simplified Chinese",
long_description=get_long_description(),
long_description_content_type="text/markdown",
url="https://github.com/BYVoid/OpenCC",
url="https://github.com/HFAiLab/OpenCC",

packages=packages,
package_dir={'opencc': 'python/opencc'},
package_data={str('opencc'): [
package_dir={'ds-opencc': 'python/opencc'},
package_data={str('ds-opencc'): [
'clib/opencc_clib*',
'clib/share/opencc/*',
]},
Expand Down

0 comments on commit 3fb3390

Please sign in to comment.