forked from RasaHQ/rasa
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
149 lines (140 loc) · 4.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
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
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
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("rasa/version.py") as f:
exec(f.read())
# Get the long description from the README file
with open(os.path.join(here, "README.md"), encoding="utf-8") as f:
long_description = f.read()
tests_requires = [
"pytest~=4.5",
"pytest-cov~=2.7",
"pytest-localserver~=0.5.0",
"pytest-sanic~=1.0.0",
"responses~=0.9.0",
"freezegun~=0.3.0",
"nbsphinx>=0.3",
"aioresponses~=0.6.0",
"moto~=1.3.8",
"fakeredis~=1.0",
"mongomock~=3.18",
]
install_requires = [
"requests>=2.20",
"boto3~=1.9",
"matplotlib~=3.0",
"attrs>=18",
"jsonpickle~=1.1",
"redis~=3.3.5",
"pymongo[tls,srv]~=3.8",
"numpy~=1.16",
"scipy~=1.2",
"tensorflow~=1.15.0",
# absl is a tensorflow dependency, but produces double logging before 0.8
# should be removed once tensorflow requires absl > 0.8 on its own
"absl-py>=0.8.0",
# setuptools comes from tensorboard requirement:
# https://github.com/tensorflow/tensorboard/blob/1.14/tensorboard/pip_package/setup.py#L33
"setuptools >= 41.0.0",
"tensorflow-probability~=0.7.0",
"tensor2tensor~=1.14.0",
"apscheduler~=3.0",
"tqdm~=4.0",
"networkx~=2.3.0",
"fbmessenger~=6.0",
"pykwalify~=1.7.0",
"coloredlogs~=10.0",
"scikit-learn~=0.20.2",
"ruamel.yaml~=0.15.0",
"scikit-learn~=0.20.0",
"slackclient~=1.3",
"python-telegram-bot~=11.0",
"twilio~=6.0",
"webexteamssdk~=1.1",
"mattermostwrapper~=2.0",
"rocketchat_API~=0.6.0",
"colorhash~=1.0",
"pika~=1.0.0",
"jsonschema~=3.0",
"packaging~=19.0",
"gevent~=1.4",
"pytz~=2019.1",
"python-dateutil~=2.8",
"rasa-sdk~=1.6.0",
"colorclass~=2.2",
"terminaltables~=3.1",
"sanic~=19.9",
"sanic-cors==0.9.9.post1",
"sanic-jwt~=1.3",
# needed because of https://github.com/huge-success/sanic/issues/1729
"multidict==4.6.1",
"aiohttp~=3.5",
"questionary>=1.1.0",
"python-socketio>=4.3.1",
# the below can be unpinned when python-socketio pins >=3.9.3
"python-engineio>=3.9.3",
"pydot~=1.4",
"async_generator~=1.10",
"SQLAlchemy~=1.3.0",
"sklearn-crfsuite~=0.3.6",
"PyJWT~=1.7",
# remove when tensorflow@1.15.x or a pre-release patch is released
# https://github.com/tensorflow/tensorflow/issues/32319
"gast==0.2.2",
]
extras_requires = {
"test": tests_requires,
"spacy": ["spacy>=2.1,<2.2"],
"convert": ["tensorflow_text~=1.15.1", "tensorflow_hub~=0.6.0"],
"mitie": ["mitie"],
"sql": ["psycopg2~=2.8.2", "SQLAlchemy~=1.3"],
"kafka": ["kafka-python~=1.4"],
}
setup(
name="rasa",
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
# supported python versions
"Programming Language :: Python",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Topic :: Software Development :: Libraries",
],
python_requires=">=3.6",
packages=find_packages(exclude=["tests", "tools", "docs", "contrib"]),
entry_points={"console_scripts": ["rasa=rasa.__main__:main"]},
version=__version__,
install_requires=install_requires,
tests_require=tests_requires,
extras_require=extras_requires,
include_package_data=True,
description="Open source machine learning framework to automate text- and "
"voice-based conversations: NLU, dialogue management, connect to "
"Slack, Facebook, and more - Create chatbots and voice assistants",
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/archive/{}.tar.gz"
"".format(__version__),
project_urls={
"Bug Reports": "https://github.com/rasahq/rasa/issues",
"Source": "https://github.com/rasahq/rasa",
},
)
print("\nWelcome to Rasa!")
print(
"If you have any questions, please visit our documentation page: https://rasa.com/docs/"
)
print("or join the community discussions on https://forum.rasa.com/")