-
Notifications
You must be signed in to change notification settings - Fork 800
/
setup.py
51 lines (46 loc) · 1.51 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
from setuptools import setup, find_packages
import io
import os
install_requires = [
"mailchimp3~=3.0.2",
"oauth2client~=4.1.2",
"gspread~=3.0.0",
"beautifulsoup4~=4.6.3",
"requests~=2.24.0",
"geopy~=1.18.1",
"pandas>=0.25.0",
"algoliasearch>=2.0,<3.0",
"spacy~=2.2.4",
]
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.6",
"Programming Language :: Python :: 3.7",
],
packages=find_packages(where="demo"),
version="2.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/main.zip",
project_urls={
"Bug Reports": "https://github.com/rasahq/rasa-demo/issues",
"Source": "https://github.com/rasahq/rasa-demo",
},
)