forked from agermanidis/TranscriptBot
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
25 lines (23 loc) · 628 Bytes
/
setup.py
File metadata and controls
25 lines (23 loc) · 628 Bytes
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
#!/usr/bin/env python
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
setup(
name='TranscriptBot',
version='0.1.4',
description='Real-time voice transcription Slack bot',
author='Anastasis Germanidis',
author_email='agermanidis@gmail.com',
url='https://github.com/bigbgh/TranscriptBot',
packages=['transcriptbot'],
scripts=['bin/transcriptbot'],
install_requires=[
'requests==2.3.0',
'tabulate==0.7.5',
'sounddevice==0.3.3',
'PyAudio>=0.2.7',
'docopt==0.6.2'
],
license=open("LICENSE").read()
)