forked from Rowl1ng/rasa_wechat
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
75 lines (68 loc) · 1.92 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
from setuptools import setup, find_packages
import io
# Avoids IDE errors, but actual version is read from version.py
__version__ = None
exec(open('rasa_core/version.py').read())
try:
import pypandoc
readme = pypandoc.convert_file('README.md', 'rst')
except (IOError, ImportError):
readme = open('README.md').read()
tests_requires = [
"pytest-pep8",
"pytest-services",
"pytest-flask",
"pytest-cov",
"pytest-xdist"
]
install_requires = [
'jsonpickle',
'six',
'redis',
'fakeredis',
'nbsphinx',
'pandoc',
'future',
'numpy>=1.13',
'typing>=3.6',
'graphviz',
'Keras',
'tensorflow',
'h5py',
'apscheduler',
'tqdm',
'ConfigArgParse',
'networkx',
'pymessenger',
]
extras_requires = {
'test': tests_requires
}
setup(
name='rasa_core',
classifiers=[
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3.6"
],
packages=find_packages(exclude=["tests", "tools"]),
version=__version__,
install_requires=install_requires,
tests_require=tests_requires,
extras_require=extras_requires,
include_package_data=True,
description="Machine learning based dialogue engine "
"for conversational software.",
long_description=readme,
author='Rasa Technologies GmbH',
author_email='hi@rasa.ai',
keywords=["nlp", "machine-learning", "machine-learning-library", "bot",
"bots",
"botkit", "rasa", "conversational-agents",
"conversational-ai",
"chatbot", "chatbot-framework", "bot-framework"],
url="https://rasa.ai",
download_url="https://github.com/RasaHQ/rasa_core/archive/{}.tar.gz".format(__version__)
)
print("\nWelcome to Rasa Core!")
print("If any questions please visit documentation page https://rasahq.github.io/rasa_core")
print("or join community chat on https://gitter.im/RasaHQ/rasa_core")