forked from RasaHQ/rasa-demo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
46 lines (42 loc) · 1.53 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
from setuptools import setup, find_packages
import io
import os
install_requires = [
'rasa_nlu[tensorflow]~=0.13.1',
'rasa_core~=0.10.4',
'mailchimp3~=3.0.2',
'oauth2client~=4.1.2',
'gspread~=3.0.0'
]
here = os.path.abspath(os.path.dirname(__file__))
with io.open(os.path.join(here, "README.md"), encoding="utf-8") as f:
long_description = f.read()
setup(
name='rasa-demo',
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
# supported python versions
"Programming Language :: Python",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6"
],
packages=find_packages(),
version='1.0',
install_requires=install_requires,
description="Rasa Demo Bot",
long_description=long_description,
long_description_content_type="text/markdown",
author='Rasa Technologies GmbH',
author_email='[email protected]',
maintainer="Akela Drissner-Schmid",
maintainer_email="[email protected]",
license="GNU General Public License v3.0",
url='https://github.com/rasahq/rasa-demo',
download_url="https://github.com/RasaHQ/rasa-demo/archive/master.zip",
project_urls={
"Bug Reports": "https://github.com/rasahq/rasa-demo/issues",
"Source": "https://github.com/rasahq/rasa-demo",
},
)