forked from RasaHQ/rasa-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
82 lines (73 loc) · 2.52 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
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_sdk/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",
]
install_requires = [
'future~=0.16',
'typing~=3.0',
'requests~=2.20',
'ConfigArgParse~=0.13.0',
'coloredlogs~=10.0',
'flask~=1.0',
'flask_cors~=3.0',
'gevent~=1.2',
'six~=1.11',
]
extras_requires = {
"test": tests_requires
}
setup(
name="rasa-core-sdk",
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_sdk/archive/{}.tar.gz"
"".format(__version__),
project_urls={
"Bug Reports": "https://github.com/rasahq/rasa_core_sdk/issues",
"Documentation": "https://docs.rasa.com/core",
"Source": "https://github.com/rasahq/rasa_core_sdk",
},
)
print("\nWelcome to Rasa Core SDK!")
print("If any questions please visit "
"documentation page https://docs.rasa.com/core")
print("or join community chat on https://gitter.im/RasaHQ/rasa_core")