pull/960/head
Hui Zhang 3 years ago
parent 2a66c2c13b
commit 0cd546d10b

@ -1,4 +0,0 @@
numpy >= 1.15.0
resampy >= 0.2.2
scipy >= 1.0.0
soundfile >= 0.9.0

@ -18,6 +18,7 @@ version = '0.1.0a'
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name="paddleaudio",
version=version,
@ -35,8 +36,12 @@ setuptools.setup(
],
python_requires='>=3.6',
install_requires=[
'numpy >= 1.15.0', 'scipy >= 1.0.0', 'resampy >= 0.2.2',
'soundfile >= 0.9.0'
'numpy >= 1.15.0',
'scipy >= 1.0.0',
'resampy >= 0.2.2',
'soundfile >= 0.9.0',
'colorlog',
'pathos',
],
extras_require={'dev': ['pytest>=3.7', 'librosa>=0.7.2']
} # for dev only, install: pip install -e .[dev]

@ -132,7 +132,7 @@ class UploadCommand(Command):
setup_info = dict(
# Metadata
name='paddle-speech',
name='paddlespeech',
version='2.1.2',
author='PaddleSL Speech Team',
author_email='',
@ -175,7 +175,8 @@ setup_info = dict(
},
# Package info
packages=find_packages(exclude=('tests', 'tests.*')),
packages=find_packages(exclude=('tests', 'tests.*', 'examples*',
'paddleaudio*', 'third_party*', 'tools*')),
zip_safe=True,
classifiers=[
'Development Status :: 4 - Beta',

Loading…
Cancel
Save