-
Notifications
You must be signed in to change notification settings - Fork 83
/
Copy pathsetup.py
executable file
·27 lines (24 loc) · 936 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
#!/usr/bin/python3
from setuptools import setup
with open('README.rst') as f:
long_description = f.read()
setup(
name='py-ecg-detectors',
version='0.9.4',
description="Seven ECG heartbeat detection algorithms and timedomain heartrate variability analysis",
long_description=long_description,
author='Luis Howell, Bernd Porr',
author_email='[email protected], [email protected]',
py_modules=['ecgdetectors','hrv'],
include_package_data=True,
install_requires=['numpy','pathlib','scipy','biosppy','gatspy','pywavelets'],
zip_safe=False,
url='https://github.com/berndporr/py-ecg-qrs-detectors',
license='GPL 3.0',
data_files=[('templates',['templates/template_250hz.csv','templates/template_360hz.csv'])],
classifiers=[
'Intended Audience :: Developers',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3',
],
)