1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
|
from setuptools import setup, find_packages
setup(name='speechpy-fast',
version='2.4',
description='A fork of the python package for extracting speech features.',
author='Amirsina Torfi, Matthew Scholefield',
author_email='matthew331199@gmail.com',
url='https://github.com/matthewscholefield/speechpy',
download_url = 'https://github.com/matthewscholefield/speechpy/archive/2.4.zip',
packages=find_packages(exclude=('tests', 'docs')),
include_package_data=True,
install_requires=[
'scipy',
'numpy',
'backports.functools_lru_cache;python_version<"3.2"'
],
zip_safe=False)
|