-
Notifications
You must be signed in to change notification settings - Fork 61
/
setup.py
32 lines (27 loc) · 1022 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
# coding: utf-8
from distutils.core import setup
LONGDOC = """
Please go to https://github.com/someus/ChineseTone for more info.
ChineseTone主要功能是将汉字转为拼音,兼容Python2、Python3,支持多音字。
具体使用方法见 https://github.com/someus/ChineseTone 。
"""
setup(
name='ChineseTone',
version='0.1.4',
description='汉字转换为拼音,支持多音字',
long_description=LONGDOC,
author='Letian Sun',
author_email='[email protected]',
url='https://github.com/someus/ChineseTone',
classifiers=[
'Operating System :: OS Independent',
'Natural Language :: Chinese (Simplified)',
'Natural Language :: Chinese (Traditional)',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 3',
],
keywords='NLP,Chinese,Tone',
packages=['ChineseTone'],
package_dir={'ChineseTone':'ChineseTone'},
package_data={'ChineseTone':['*.py', 'data/*.db']},
)