2017-09-27 15:27:47 +08:00
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
from setuptools import setup, find_packages
|
|
|
|
LONGDOC = """
|
|
|
|
Synonyms
|
|
|
|
=====================
|
|
|
|
|
|
|
|
Chinese Synonyms for Natural Language Processing and Understanding.
|
|
|
|
|
|
|
|
Welcome
|
|
|
|
-------
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
2017-10-31 16:54:55 +08:00
|
|
|
setup(
|
|
|
|
name='synonyms',
|
2018-10-25 11:29:41 +08:00
|
|
|
version='3.10.0',
|
2017-10-31 16:54:55 +08:00
|
|
|
description='Chinese Synonyms for Natural Language Processing and Understanding',
|
|
|
|
long_description=LONGDOC,
|
|
|
|
author='Hai Liang Wang, Hu Ying Xi',
|
|
|
|
author_email='hailiang.hl.wang@gmail.com',
|
|
|
|
url='https://github.com/huyingxi/Synonyms',
|
2018-03-04 10:04:39 +08:00
|
|
|
license="MIT",
|
2017-10-31 16:54:55 +08:00
|
|
|
classifiers=[
|
2017-09-27 15:27:47 +08:00
|
|
|
'Intended Audience :: Developers',
|
2018-03-04 10:04:39 +08:00
|
|
|
'License :: OSI Approved :: MIT License',
|
2017-09-27 15:27:47 +08:00
|
|
|
'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.5',
|
|
|
|
'Programming Language :: Python :: 3.6',
|
|
|
|
'Topic :: Text Processing',
|
|
|
|
'Topic :: Text Processing :: Indexing',
|
2017-10-31 16:54:55 +08:00
|
|
|
'Topic :: Text Processing :: Linguistic'],
|
|
|
|
keywords='corpus,machine-learning,NLU,NLP,Synonyms,Similarity',
|
|
|
|
packages=find_packages(),
|
|
|
|
install_requires=[
|
2018-01-19 19:16:30 +08:00
|
|
|
'six>=1.11.0',
|
2018-03-03 23:49:33 +08:00
|
|
|
'numpy>=1.13.1',
|
2018-03-08 11:19:36 +08:00
|
|
|
'scipy==1.0.0',
|
2018-03-07 15:08:42 +08:00
|
|
|
'scikit-learn==0.19.1',
|
|
|
|
'absl-py==0.1.10'
|
2017-10-31 16:54:55 +08:00
|
|
|
],
|
|
|
|
package_data={
|
|
|
|
'synonyms': [
|
|
|
|
'**/*.gz',
|
|
|
|
'**/*.txt',
|
|
|
|
'**/*.vector',
|
|
|
|
'LICENSE']})
|