forked from Mufabo/robustsp
-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
27 lines (22 loc) · 842 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
27
from setuptools import setup, find_packages
import sys
if sys.version_info.major != 3:
print('This Python is only compatible with Python 3, but you are running '
'Python {}. The installation will likelyfail.'.format(sys.version_info.major))
setup(name='robustsp',
version='0.1',
description='library for robust signal processing',
url='https://github.com/Mufabo/robustsp',
author='M. Fatih Bostanci',
author_email='[email protected]',
license='MIT',
packages= find_packages(),#['robustsp'],
package_data = {'robustsp': ['data/*.mat']},
install_requires=[
'numpy',
'matplotlib',
'scipy',
'setuptools',
'statsmodels'
],
zip_safe=False)