forked from RasaHQ/rasa
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
220 lines (198 loc) · 5.89 KB
/
pyproject.toml
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
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
[build-system]
requires = [ "poetry-core>=1.0.4",]
build-backend = "poetry.core.masonry.api"
[tool.black]
line-length = 88
target-version = [ "py37", "py38", "py39",]
exclude = "((.eggs | .git | .pytest_cache | build | dist))"
[tool.poetry]
name = "rasa"
version = "3.2.5"
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"
authors = [ "Rasa Technologies GmbH <[email protected]>",]
maintainers = [ "Tom Bocklisch <[email protected]>",]
homepage = "https://rasa.com"
repository = "https://github.com/rasahq/rasa"
documentation = "https://rasa.com/docs"
classifiers = [ "Development Status :: 5 - Production/Stable", "Intended Audience :: Developers", "License :: OSI Approved :: Apache Software License", "Topic :: Software Development :: Libraries",]
keywords = [ "nlp", "machine-learning", "machine-learning-library", "bot", "bots", "botkit", "rasa conversational-agents", "conversational-ai", "chatbot", "chatbot-framework", "bot-framework",]
include = [ "LICENSE.txt", "README.md", "rasa/shared/core/training_data/visualization.html", "rasa/cli/default_config.yml", "rasa/shared/importers/*", "rasa/utils/schemas/*", "rasa/keys",]
readme = "README.md"
license = "Apache-2.0"
[tool.towncrier]
package = "rasa"
package_dir = "rasa"
filename = "CHANGELOG.mdx"
directory = "./changelog"
underlines = " "
title_format = "## [{version}] - {project_date}"
template = "./changelog/_template.md.jinja2"
start_string = "<!-- TOWNCRIER -->\n"
issue_format = "[#{issue}](https://github.com/rasahq/rasa/issues/{issue})"
[[tool.towncrier.type]]
directory = "removal"
name = "Deprecations and Removals"
showcontent = true
[[tool.towncrier.type]]
directory = "feature"
name = "Features"
showcontent = true
[[tool.towncrier.type]]
directory = "improvement"
name = "Improvements"
showcontent = true
[[tool.towncrier.type]]
directory = "bugfix"
name = "Bugfixes"
showcontent = true
[[tool.towncrier.type]]
directory = "doc"
name = "Improved Documentation"
showcontent = true
[[tool.towncrier.type]]
directory = "misc"
name = "Miscellaneous internal changes"
showcontent = false
[tool.poetry.dependencies]
python = ">=3.7,<3.10"
boto3 = "^1.12"
requests = "^2.23"
matplotlib = ">=3.1,<3.4"
attrs = ">=19.3,<22.2"
jsonpickle = ">=1.3,<2.3"
redis = ">=3.4,<5.0"
numpy = ">=1.19.2,<1.20.0"
scipy = ">=1.4.1,<1.8.0"
absl-py = ">=0.9,<1.3"
apscheduler = ">=3.6,<3.10"
tqdm = "^4.31"
networkx = ">=2.4,<2.7"
fbmessenger = "~6.0.0"
pykwalify = ">=1.7,<1.9"
coloredlogs = ">=10,<16"
"ruamel.yaml" = "^0.16.5"
scikit-learn = ">=0.22,<0.25"
slackclient = "^2.0.0"
twilio = ">=6.26,<6.51"
webexteamssdk = ">=1.1.1,<1.7.0"
mattermostwrapper = "~2.2"
rocketchat_API = ">=0.6.31,<1.26.0"
colorhash = "~1.0.2"
jsonschema = ">=3.2,<4.7"
packaging = ">=20.0,<21.0"
pytz = ">=2019.1,<2023.0"
rasa-sdk = "~3.2.0"
colorclass = "~2.2"
terminaltables = "~3.1.0"
sanic = "~21.12"
sanic-cors = "^2.0.0"
sanic-jwt = "^1.6.0"
cloudpickle = ">=1.2,<2.2"
aiohttp = ">=3.6,!=3.7.4.post0,<3.9"
questionary = ">=1.5.1,<1.11.0"
# there is currently an issue with 3.0.29 as it changes the unit test
# interface for testing CLI interactions. this change breaks our unit
# tests.
prompt-toolkit = "^3.0,<3.0.29"
python-socketio = ">=4.4,<6"
python-engineio = ">=4,<6,!=5.0.0"
pydot = "~1.4"
SQLAlchemy = ">=1.4.0,<1.5.0"
sklearn-crfsuite = "~0.3"
psycopg2-binary = ">=2.8.2,<2.10.0"
python-dateutil = "~2.8"
tensorflow = "~2.7.0"
tensorflow_hub = "~0.12.0"
tensorflow-addons = "~0.15.0"
setuptools = ">=41.0.0"
kafka-python = ">=1.4,<3.0"
ujson = ">=1.35,<6.0"
regex = ">=2020.6,<2022.8"
joblib = ">=0.15.1,<1.2.0"
sentry-sdk = ">=0.17.0,<1.10.0"
aio-pika = ">=6.7.1,<9.0.0"
pyTelegramBotAPI = ">=3.7.3,<5.0.0"
dask = "2022.2.0"
typing-extensions = "^3.7.4"
typing-utils = "^0.1.0"
tarsafe = "^0.0.3"
google-auth = "<3"
CacheControl = "^0.12.9"
randomname = "^0.1.5"
sanic-routing = "^0.7.2"
[tool.poetry.dev-dependencies]
pytest-cov = "^3.0.0"
pytest-asyncio = "^0.14.0"
pytest-xdist = "^2.2.1"
pytest = "^7.1.1"
freezegun = "^1.0.0"
responses = "^0.20.0"
aioresponses = "^0.7.2"
moto = "~=2.2.6"
fakeredis = "^1.5.2"
mongomock = "^4.1.2"
black = "22.6.0"
flake8 = "^4.0.1"
flake8-docstrings = "^1.5.0"
google-cloud-storage = "^2.4.0"
azure-storage-blob = "<12.12.0"
coveralls = "^3.0.1"
towncrier = "^21.3.0"
toml = "^0.10.0"
pep440-version-utils = "^0.3.0"
pydoc-markdown = "^4.5.1"
pytest-timeout = "^1.4.2"
mypy = "^0.971"
bandit = "^1.6.3"
types-pkg-resources = "^0.1.3"
types-pytz = "^2022.1.1"
types-python-dateutil = "^2.8.12"
types-requests = "^2.25.0"
types-setuptools = "^63.2.0"
memory-profiler = "^0.60.0"
psutil = "^5.8.0"
mypy-extensions = "^0.4.3"
sanic-testing = "^0.8.0"
analytics-python = "^1.4.0"
datadog-api-client = "^2.0.0"
datadog = "^0.43.0"
types-redis = "^4.3.4"
[tool.poetry.extras]
spacy = [ "spacy",]
jieba = [ "jieba",]
transformers = [ "transformers", "sentencepiece",]
full = [ "spacy", "transformers", "sentencepiece", "jieba",]
gh-release-notes = [ "github3.py",]
[tool.poetry.scripts]
rasa = "rasa.__main__:main"
[tool.poetry.dependencies.PyJWT]
version = "^2.0.0"
extras = [ "crypto",]
[tool.poetry.dependencies.colorama]
version = "^0.4.4"
markers = "sys_platform == 'win32'"
[tool.poetry.dependencies.spacy]
version = ">=3.1,<3.3"
optional = true
[tool.poetry.dependencies.tensorflow-text]
version = "^2.7.0"
markers = "sys_platform!='win32'"
[tool.poetry.dependencies."github3.py"]
version = "~1.3.0"
optional = true
[tool.poetry.dependencies.transformers]
version = "~4.13.0"
optional = true
[tool.poetry.dependencies.sentencepiece]
version = "~0.1.96"
optional = true
extras = [ "sentencepiece",]
[tool.poetry.dependencies.jieba]
version = ">=0.39, <0.43"
optional = true
[tool.poetry.dependencies.pymongo]
version = ">=3.8,<3.11"
extras = [ "tls", "srv",]
[tool.poetry.dev-dependencies.pytest-sanic]
git = "https://github.com/RasaHQ/pytest-sanic"
branch = "fix_signal_issue"