-
Notifications
You must be signed in to change notification settings - Fork 901
/
setup.py
51 lines (47 loc) · 1.59 KB
/
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
LONGDOC = """
Synonyms
=====================
中文近义词
https://github.com/chatopera/Synonyms
"""
setup(
name='synonyms',
version='3.23.5',
description='中文近义词:聊天机器人,智能问答工具包;Chinese Synonyms for Natural Language Processing and Understanding',
long_description=LONGDOC,
author='Hai Liang Wang, Hu Ying Xi',
author_email='[email protected]',
url='https://github.com/chatopera/Synonyms',
license="Chunsong Public License, version 1.0",
classifiers=[
'Intended Audience :: Developers',
'Operating System :: OS Independent',
'Natural Language :: Chinese (Simplified)',
'Natural Language :: Chinese (Traditional)',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Topic :: Text Processing',
'Topic :: Text Processing :: Indexing',
'Topic :: Text Processing :: Linguistic'],
keywords='corpus,machine-learning,NLU,NLP,Synonyms,Similarity,chatbot',
packages=find_packages(),
install_requires=[
'six>=1.11.0',
'numpy>=1.13.1',
'scipy>=1.0.0',
'scikit-learn>=0.19.1',
'jieba>=0.40',
'chatoperastore>=1.2.0'
],
package_data={
'synonyms': [
'**/**/idf.txt',
'**/**/*.p',
'**/*.gz',
'**/*.txt',
'LICENSE']})