forked from RasaHQ/rasa_core
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
106 lines (98 loc) · 3.05 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
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-services~=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",
]
install_requires = [
'jsonpickle~=0.9.0',
'six~=1.0',
'redis~=2.0',
'fakeredis~=0.10.0',
'future~=0.16',
'numpy~=1.13',
'typing~=3.0',
'requests~=2.15',
'graphviz~=0.8.0',
'keras~=2.0',
'tensorflow>=1.7,<1.9',
'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',
'rasa_nlu~=0.13.0',
'slackclient~=1.0',
'python-telegram-bot~=10.0',
'twilio~=6.0',
'mattermostwrapper~=2.0',
'colorhash~=1.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='[email protected]',
maintainer="Tom Bocklisch",
maintainer_email="[email protected]",
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://core.rasa.com")
print("or join community chat on https://gitter.im/RasaHQ/rasa_core")