forked from janchorowski/kaldi-python
-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·24 lines (21 loc) · 748 Bytes
/
setup.py
File metadata and controls
executable file
·24 lines (21 loc) · 748 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
#!/usr/bin/env python
import os
from distutils.core import setup
from distutils.command.build import build
class Make(build):
def run(self):
os.system("make")
build.run(self)
setup(name='kaldi-python',
version='1.0',
description='Python interface for kaldi iterators',
author='Jan Chorowski',
url='https://github.com/janchorowski/kaldi-python',
cmdclass={'build': Make},
packages=['kaldi_io', 'kaldi_argparse'],
package_data={'kaldi_io': ['kaldi_io_internal.so']},
scripts=['scripts/apply-global-cmvn.py',
'scripts/compute-global-cmvn-stats.py',
'scripts/copy-feats-padded.py',
'scripts/show-wav-ali.py'],
requires=['numpy'])