Skip to content

Commit

Permalink
adding preemphasizing and resolving packaging issues
Browse files Browse the repository at this point in the history
  • Loading branch information
astorfi committed Nov 26, 2017
1 parent 990939f commit 6bb591d
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 1 deletion.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
from setuptools import setup, find_packages

setup(name='speechpy',
version='1.4.3',
version='1.4.4',
description='The python package for extracting speech features.',
author='Amirsina Torfi',
author_email='[email protected]',
Expand Down
15 changes: 15 additions & 0 deletions setup.py~
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
from setuptools import setup, find_packages

setup(name='speechpy',
version='1.4.3',
description='The python package for extracting speech features.',
author='Amirsina Torfi',
author_email='[email protected]',
url='https://github.com/astorfi/speech_feature_extraction',
packages=find_packages(exclude=('tests', 'docs')),
include_package_data=True,
install_requires=[
'scipy',
'numpy',
],
zip_safe=False)

0 comments on commit 6bb591d

Please sign in to comment.