forked from shibing624/dialogbot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
57 lines (53 loc) · 1.56 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
52
53
54
55
56
57
# -*- coding: utf-8 -*-
"""
@author:XuMing(xuming624@qq.com)
@description:
"""
import sys
from setuptools import setup, find_packages
if sys.version_info < (3,):
sys.exit('Sorry, Python3 is required for dialogbot.')
with open('README.md', 'r', encoding='utf-8') as f:
readme = f.read()
setup(
name='dialogbot',
version='0.1.3',
description='Dialog Robot, ChatBot',
long_description=readme,
long_description_content_type='text/markdown',
author='XuMing',
author_email='xuming624@qq.com',
url='https://github.com/shibing624/dialogbot',
license="Apache 2.0",
classifiers=[
'Intended Audience :: Developers',
'Operating System :: OS Independent',
'Natural Language :: Chinese (Simplified)',
'Natural Language :: Chinese (Traditional)',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Topic :: Text Processing',
'Topic :: Text Processing :: Indexing',
'Topic :: Text Processing :: Linguistic',
],
keywords='NLP,chatbot,dialogbot,dialogue,dialog',
install_requires=[
'transformers',
'loguru',
'jieba',
'gensim',
'lxml',
'tqdm',
'bs4',
'numpy',
'nltk'
],
packages=find_packages(exclude=['tests']),
package_dir={'dialogbot': 'dialogbot'},
package_data={
'dialogbot': ['*.*', '../*.md', '../*.txt',
'data/*', 'data/medical_dict/*',
'data/person_graph/*', 'data/taobao/*'],
},
test_suite='tests',
)