-
Notifications
You must be signed in to change notification settings - Fork 82
/
setup.py
executable file
·29 lines (26 loc) · 914 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
28
29
#!/usr/bin/python3
from setuptools import setup
with open('README.rst', encoding='utf-8') as f:
long_description = f.read()
setup(
name='py-ecg-detectors',
version='1.3.5',
description="Eight ECG heartbeat detection algorithms and heartrate variability analysis",
long_description=long_description,
author='Luis Howell, Bernd Porr',
author_email='luisbhowell@gmail.com, bernd.porr@glasgow.ac.uk',
py_modules=['ecgdetectors','hrv','ecgtemplates'],
install_requires=['numpy',
'pathlib2',
'scipy',
'gatspy',
'pywavelets'],
zip_safe=False,
url='https://github.com/berndporr/py-ecg-qrs-detectors',
license='GPL 3.0',
classifiers=[
'Intended Audience :: Developers',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3',
],
)