Skip to content

Commit

Permalink
renew the setup.py for paddlespeech feat and ctcdecoders
Browse files Browse the repository at this point in the history
  • Loading branch information
Jackwaterveg committed Nov 18, 2021
1 parent d2d6062 commit ca06b91
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 10 deletions.
12 changes: 8 additions & 4 deletions paddlespeech/s2t/decoders/ctcdecoder/swig/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -126,8 +126,12 @@ def compile_test(header, library):
]

setup(
name='swig_decoders',
version='1.1',
description="""CTC decoders""",
name='paddlespeech_ctcdecoders',
version='0.0.1a',
description="CTC decoders in paddlespeech",
author="PaddlePaddle Speech and Language Team",
author_email="paddlesl@baidu.com",
url="https://github.com/PaddlePaddle/PaddleSpeech",
license='Apache 2.0',
ext_modules=decoders_module,
py_modules=['swig_decoders'], )
py_modules=['swig_decoders'] )
16 changes: 10 additions & 6 deletions third_party/python_kaldi_features/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,16 @@
except ImportError:
from distutils.core import setup

setup(name='python_speech_features',
version='0.6',
description='Python Speech Feature extraction',
author='James Lyons',
author_email='james.lyons0@gmail.com',
with open("requirements.txt", encoding="utf-8-sig") as f:
requirements = f.readlines()

setup(name='paddlespeech_feat',
version='0.0.1a',
description='python speech feature extraction in paddlespeech',
install_requires=requirements,
author="PaddlePaddle Speech and Language Team",
author_email="paddlesl@baidu.com",
license='MIT',
url='https://github.com/jameslyons/python_speech_features',
url='https://github.com/PaddlePaddle/PaddleSpeech',
packages=['python_speech_features'],
)

0 comments on commit ca06b91

Please sign in to comment.