first substantial commit. nearly working with Amazon. fixed #1

This commit is contained in:
2019-02-07 14:31:50 -05:00
parent f5beda0b27
commit 63a4bd4a2c
7 changed files with 273 additions and 1 deletions

18
setup.py Normal file
View File

@@ -0,0 +1,18 @@
from setuptools import setup
setup(
name="tatt",
version="0.1",
py_modules=['tatt'],
install_requires=[
'Click',
'awscli',
'boto3',
'requests',
],
entry_points='''
[console_scripts]
transcribe=transcribe:cli
''',
)