43 lines
1.4 KiB
Python
43 lines
1.4 KiB
Python
# -*- coding: utf-8 -*-
|
|
from setuptools import setup, find_packages
|
|
LONGDOC = """
|
|
Synonyms
|
|
=====================
|
|
|
|
Chinese Synonyms for Natural Language Processing and Understanding.
|
|
|
|
Welcome
|
|
-------
|
|
|
|
"""
|
|
|
|
setup(name='synonyms',
|
|
version='0.3',
|
|
description='Chinese Synonyms for Natural Language Processing and Understanding',
|
|
long_description=LONGDOC,
|
|
author='Hai Liang Wang',
|
|
author_email='hailiang.hl.wang@gmail.com',
|
|
url='https://github.com/huyingxi/Synonyms',
|
|
license="GPL 3.0",
|
|
classifiers=[
|
|
'Intended Audience :: Developers',
|
|
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
|
|
'Operating System :: OS Independent',
|
|
'Natural Language :: Chinese (Simplified)',
|
|
'Natural Language :: Chinese (Traditional)',
|
|
'Programming Language :: Python',
|
|
'Programming Language :: Python :: 2',
|
|
'Programming Language :: Python :: 2.7',
|
|
'Programming Language :: Python :: 3',
|
|
'Programming Language :: Python :: 3.4',
|
|
'Programming Language :: Python :: 3.5',
|
|
'Programming Language :: Python :: 3.6',
|
|
'Topic :: Text Processing',
|
|
'Topic :: Text Processing :: Indexing',
|
|
'Topic :: Text Processing :: Linguistic'
|
|
],
|
|
keywords='corpus,machine-learning,NLU,NLP,Synonyms,Similarity',
|
|
packages= find_packages(),
|
|
package_data={'synonyms':['**/*gz', 'LICENSE']}
|
|
)
|