forked from RasaHQ/rasa_core
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
122 lines (114 loc) · 3.43 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
from setuptools import setup, find_packages
import io
import os
here = os.path.abspath(os.path.dirname(__file__))
# Avoids IDE errors, but actual version is read from version.py
__version__ = None
exec(open("rasa_core/version.py").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()
tests_requires = [
"pytest~=3.0",
"pytest-pep8~=1.0",
"pytest-cov~=2.0",
"pytest_localserver~=0.4.0",
"treq~=17.0",
"freezegun~=0.3.0",
"nbsphinx>=0.3",
"matplotlib~=2.0",
"pygraphviz~=1.0",
"responses~=0.9.0",
"httpretty~=0.9.0",
]
install_requires = [
"jsonpickle~=0.9.0",
"six~=1.0",
"redis~=2.0",
"fakeredis~=0.10.0",
"pymongo~=3.5",
"future~=0.16",
"numpy~=1.14",
"typing~=3.0",
"requests~=2.15",
"graphviz~=0.9.0",
"keras~=2.0",
"tensorflow==1.10.0",
"h5py~=2.0",
"apscheduler~=3.0",
"tqdm~=4.0",
"ConfigArgParse~=0.13.0",
"networkx~=2.0",
"fbmessenger~=5.0",
"pykwalify<=1.6.0",
"coloredlogs~=10.0",
"ruamel.yaml~=0.15.0",
"flask~=1.0",
"flask_cors~=3.0",
"scikit-learn~=0.19.0",
"slackclient~=1.0",
"python-telegram-bot~=10.0",
"twilio~=6.0",
"mattermostwrapper~=2.0",
"rocketchat_API~=0.6.0",
"colorhash~=1.0",
"pika~=0.11.2",
"jsonschema~=2.6",
"packaging~=17.0",
"gevent~=1.2",
"pyyaml~=3.12",
"pytz~=2018.4",
"python-dateutil~=2.7",
"rasa_nlu~=0.13.0",
"rasa_core_sdk~=0.11.0",
"colorclass~=2.2",
"terminaltables~=3.1",
"PyInquirer~=1.0",
"flask-jwt-simple~=0.0.3",
"python-socketio~=2.0",
]
extras_requires = {
"test": tests_requires
}
setup(
name="rasa-core",
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
# supported python versions
"Programming Language :: Python",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Topic :: Software Development :: Libraries",
],
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=long_description,
long_description_content_type="text/markdown",
author="Rasa Technologies GmbH",
author_email="hi@rasa.com",
maintainer="Tom Bocklisch",
maintainer_email="tom@rasa.com",
license="Apache 2.0",
keywords="nlp machine-learning machine-learning-library bot bots "
"botkit rasa conversational-agents conversational-ai chatbot"
"chatbot-framework bot-framework",
url="https://rasa.com",
download_url="https://github.com/RasaHQ/rasa_core/archive/{}.tar.gz"
"".format(__version__),
project_urls={
"Bug Reports": "https://github.com/rasahq/rasa_core/issues",
"Source": "https://github.com/rasahq/rasa_core",
},
)
print("\nWelcome to Rasa Core!")
print("If any questions please visit documentation page https://rasa.com/docs/core")
print("or join the community discussions on https://forum.rasa.com")