setup.py 913 字节
Newer Older
K
KP 已提交
1
import setuptools
2 3 4 5

# set the version here
version = '0.1.0a'

K
KP 已提交
6 7 8
with open("README.md", "r") as fh:
    long_description = fh.read()
setuptools.setup(
9 10
    name="PaddleAudio",
    version=version,
K
KP 已提交
11 12 13 14 15
    author="",
    author_email="",
    description="PaddleAudio, in development",
    long_description=long_description,
    long_description_content_type="text/markdown",
16 17
    url="",
    packages=setuptools.find_packages(exclude=["build*", "test*", "examples*"]),
K
KP 已提交
18 19 20 21 22 23
    classifiers=[
        "Programming Language :: Python :: 3",
        "License :: OSI Approved :: MIT License",
        "Operating System :: OS Independent",
    ],
    python_requires='>=3.6',
24 25 26 27 28 29
    install_requires=[
        'numpy >= 1.15.0', 'scipy >= 1.0.0', 'resampy >= 0.2.2',
        'soundfile >= 0.9.0'
    ],
    extras_require={'dev': ['pytest>=3.7', 'librosa>=0.7.2']
                    }  # for dev only, install: pip install -e .[dev]
K
KP 已提交
30
)