-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
27 lines (25 loc) · 814 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
from setuptools import setup, find_packages
setup(
name='aligner',
version='0.0.1',
description='Various Python utilities for converting speech to text, force'
' aligning the transcription with the audio, and extracting timing '
'information for a linguistics production experiment.',
author='Adam Liter',
author_email='[email protected]',
packages=find_packages(where='src'),
package_dir={
'': 'src', },
entry_points={
'console_scripts': [
'to_mp3 = aligner.mp3:main',
'transcribe = aligner.stt:main',
'extract = aligner.transcriptions:main',
'align = aligner.aligner:main']},
install_requires=[
'PyYaml',
'numpy',
'pandas',
'pydub',
'google-cloud-speech',
])