-
Notifications
You must be signed in to change notification settings - Fork 12
/
setup.py
38 lines (35 loc) · 966 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
28
29
30
31
32
33
34
35
36
37
38
from setuptools import setup, find_packages
from Cython.Build import cythonize
import numpy
print("GALVEZ:", find_packages())
setup(
name="peoples-speech",
version="1.0",
packages=find_packages(),
install_requires=[
# "git+https://github.com/apache/spark.git#egg=pyspark&subdirectory=python",
"absl-py",
"pandas",
"matching",
# "langid",
"nemo_toolkit[asr]",
"tqdm",
"pydub",
"ftfy",
"srt",
"pyarrow",
"textdistance",
"sox",
"Cython",
"webrtcvad",
"pycld2",
# From https://github.com/NVIDIA/NeMo/blob/main/tools/ctc_segmentation/requirements.txt
# "ctc_segmentation==1.7.1",
# "num2words",
# End From
],
include_package_data=True,
package_data={'galvasr2': ['*.jar']},
ext_modules=cythonize("galvasr2/align/smith_waterman.pyx"),
include_dirs=[numpy.get_include()],
)