-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
31 lines (28 loc) · 909 Bytes
/
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
from setuptools import setup, find_packages # noqa: H301
with open("README.md") as f:
long_description = f.read()
setup(
name="rasa_vier_cvg",
version="9.9.9",
description="Rasa-integration for the VIER Cognitive Voice Gateway",
author="VIER GmbH",
author_email="[email protected]",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://cognitivevoice.io",
project_urls={
"Source": "https://github.com/VIER-CognitiveVoice/rasa-vier-cvg",
"Bug Reports": "https://github.com/VIER-CognitiveVoice/rasa-vier-cvg/issues",
},
keywords=["VIER", "VIER Cognitive Voice Gateway SDK", "Channel"],
python_requires=">=3.6",
install_requires=[
'rasa-sdk',
'aiohttp',
'aiodns',
'asyncio',
],
packages=find_packages(),
include_package_data=True,
license="MIT",
)