forked from schmiph2/pysepm
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
26 lines (25 loc) · 754 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
from setuptools import setup,find_packages
setup(
name='pysepm',
version='0.1',
description='Computes Objective Quality measures',
author='Philipp Schmid',
author_email='[email protected]',
url='https://github.zhaw.ch/scdp/pysepm',
license='MIT',
install_requires=[
'numpy',
'scipy',
'numba',
'pystoi',
'pesq @ https://github.com/ludlows/python-pesq/archive/master.zip#egg=pesq',
'SRMRpy @ https://github.com/jfsantos/SRMRpy/archive/master.zip#egg=SRMRpy',
],
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3'
],
packages=find_packages()
)