File tree Expand file tree Collapse file tree 2 files changed +16
-1
lines changed Expand file tree Collapse file tree 2 files changed +16
-1
lines changed Original file line number Diff line number Diff line change 1
1
from setuptools import setup , find_packages
2
2
3
3
setup (name = 'speechpy' ,
4
- version = '2.0 ' ,
4
+ version = '2.1 ' ,
5
5
description = 'The python package for extracting speech features.' ,
6
6
author = 'Amirsina Torfi' ,
7
7
author_email = 'amirsina.torfi@gmail.com' ,
Original file line number Diff line number Diff line change
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)
You can’t perform that action at this time.
0 commit comments