-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
33 lines (31 loc) · 1.07 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
from setuptools import find_packages, setup
with open("README.md") as f:
readme = f.read()
setup(
name="turn_rasa_connector",
version="0.0.1",
description="A Rasa connector for turn.io",
long_description=readme,
long_description_content_type="text/markdown",
author="praekelt.org",
author_email="[email protected]",
url="https://github.com/praekeltfoundation/turn-rasa-connector",
packages=find_packages(),
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Topic :: Communications :: Chat",
],
license="BSD",
keywords="rasa turn",
project_urls={
"Bug Tracker": "https://github.com/praekeltfoundation/turn-rasa-connector/"
"issues",
"Source Code": "https://github.com/praekeltfoundation/turn-rasa-connector",
},
install_requires=["rasa", "async_lru"],
)