Merge pull request #1006 from Jackwaterveg/update

[python lib]renew the setup.py for paddlespeech feat and ctcdecoders
pull/1011/head
Hui Zhang 3 years ago committed by GitHub
commit f850de7d8a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -126,8 +126,12 @@ decoders_module = [
] ]
setup( setup(
name='swig_decoders', name='paddlespeech_ctcdecoders',
version='1.1', version='0.0.1a',
description="""CTC decoders""", 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, ext_modules=decoders_module,
py_modules=['swig_decoders'], ) py_modules=['swig_decoders'])

@ -3,12 +3,16 @@ try:
except ImportError: except ImportError:
from distutils.core import setup from distutils.core import setup
setup(name='python_speech_features', with open("requirements.txt", encoding="utf-8-sig") as f:
version='0.6', requirements = f.readlines()
description='Python Speech Feature extraction',
author='James Lyons', setup(name='paddlespeech_feat',
author_email='james.lyons0@gmail.com', 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', license='MIT',
url='https://github.com/jameslyons/python_speech_features', url='https://github.com/PaddlePaddle/PaddleSpeech',
packages=['python_speech_features'], packages=['python_speech_features'],
) )

Loading…
Cancel
Save