-
Notifications
You must be signed in to change notification settings - Fork 5
/
setup.py
25 lines (23 loc) · 884 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
from setuptools import setup, find_packages
import os
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(
name="amazon-lex-helper",
packages=['amazon_lex_helper'],
version="1.1",
author="rubenafo",
author_email='rubenafo@amazon.com',
description="Interact with Amazon Lex using Python in an easy way",
url="https://github.com/aws-samples/amazon-lex-v2-helper",
download_url = 'https://github.com/aws-samples/amazon-lex-v2-helper/amazon-lex-v2-helper-v0.1.tgz',
keywords = ["amazon-lex", "lex", "chatbot", "voicebot", "nlp", "aws"],
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Topic :: Utilities",
"Development Status :: 4 - Beta",
],
python_requires='>=3.9',
)