-
Notifications
You must be signed in to change notification settings - Fork 95
/
Copy pathsetup.py
49 lines (43 loc) · 1.49 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
import io
import os
from setuptools import setup, find_packages
here = os.path.abspath(os.path.dirname(__file__))
# Avoids IDE errors, but actual version is read from version.py
__version__ = None
with open("version.py") as f:
exec(f.read())
# Get the long description from the README file
with io.open(os.path.join(here, 'README.md'), encoding='utf-8') as f:
long_description = f.read()
install_requires = [
"rasa~=1.1.3",
"jieba~=0.39",
"bert-serving-client==1.8.9",
"tensorflow==1.15.2",
"kashgari-tf~=0.5.3"
]
setup(
name='rasa-nlu-gao',
packages=find_packages(),
version=__version__,
install_requires=install_requires,
include_package_data=True,
description="Rasa NLU addons a natural language parser for bots",
long_description=long_description,
long_description_content_type="text/markdown",
author='Gao Quan',
author_email='[email protected]',
maintainer="Gao Quan",
maintainer_email="[email protected]",
license='Apache 2.0',
url="https://rasa.com",
keywords="nlp machine-learning machine-learning-library bot bots "
"botkit rasa conversational-agents conversational-ai chatbot"
"chatbot-framework bot-framework",
download_url="https://github.com/GaoQ1/rasa_nlu_gq/archive/{}.tar.gz"
"".format(__version__),
project_urls={
'Bug Reports': 'https://github.com/GaoQ1/rasa_nlu_gq/issues',
'Source': 'https://github.com/GaoQ1/rasa_nlu_gq',
},
)