forked from mpariente/pystoi
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
22 lines (21 loc) · 717 Bytes
/
setup.py
File metadata and controls
22 lines (21 loc) · 717 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
from setuptools import setup
from setuptools import find_packages
setup(
name='pystoi',
version='0.2.1',
description='Computes Short Term Objective Intelligibility measure',
author='Manuel Pariente',
author_email='pariente.mnl@gmail.com',
url='https://github.com/mpariente/pystoi',
license='MIT',
install_requires=['numpy', 'scipy', 'resampy'],
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3'
],
packages=find_packages()
)