-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathsetup.py
executable file
·57 lines (55 loc) · 1.89 KB
/
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
# coding=utf-8
from setuptools import setup
setup(
name='pyphysio',
packages=['pyphysio',
'pyphysio.estimators',
'pyphysio.filters',
'pyphysio.indicators',
'pyphysio.segmentation',
'pyphysio.tools',
'pyphysio.tests',
'pyphysio.sqi',
],
package_data={'pyphysio.tests': ['data/*']},
version='2.4.2',
description='Python library for physiological signals analysis (IBI & HRV, ECG, BVP, EDA, RESP...)',
author='MPBA FBK',
author_email='andrea.bizzego@unitn.it',
url='https://github.com/MPBA/pyphysio',
keywords=['eda', 'gsr', 'ecg', 'bvp', 'signal', 'analysis', 'physiological', 'pyhrv', 'hrv'],
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: Console',
'Intended Audience :: Healthcare Industry',
'Intended Audience :: Information Technology',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: GNU General Public License (GPL)',
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3.5',
'Topic :: Scientific/Engineering :: Bio-Informatics',
],
install_requires=[
'numpy',
'scipy',
'matplotlib',
'pycwt'
],
requires=[
'pytest',
],
)
print("")
print("")
print("")
print("----------------------------------")
print("| |")
print("| Thanks for using 'pyphysio'! |")
print("| |")
print("----------------------------------")
print("")
print("Remember to cite pyphysio in your publications:")
print("Bizzego et al. (2019) 'pyphysio: A physiological signal processing library for data science approaches in physiology', SoftwareX")
print("")
print("----------------------------------")