Skip to content

Commit 6d6e706

Browse files
committed
version 2.1 release with corrections in documentation
1 parent c72a506 commit 6d6e706

File tree

2 files changed

+16
-1
lines changed

2 files changed

+16
-1
lines changed

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
from setuptools import setup, find_packages
22

33
setup(name='speechpy',
4-
version='2.0',
4+
version='2.1',
55
description='The python package for extracting speech features.',
66
author='Amirsina Torfi',
77
author_email='amirsina.torfi@gmail.com',

setup.py~

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
from setuptools import setup, find_packages
2+
3+
setup(name='speechpy',
4+
version='2.0',
5+
description='The python package for extracting speech features.',
6+
author='Amirsina Torfi',
7+
author_email='amirsina.torfi@gmail.com',
8+
url='https://github.com/astorfi/speech_feature_extraction',
9+
packages=find_packages(exclude=('tests', 'docs')),
10+
include_package_data=True,
11+
install_requires=[
12+
'scipy',
13+
'numpy',
14+
],
15+
zip_safe=False)

0 commit comments

Comments
 (0)