[2143f9]: / setup.py

Download this file

28 lines (24 with data), 837 Bytes

 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='ecgdetectors',
version='0.9.0',
description="Seven ECG heartbeat detection algorithms and heartrate variability analysis",
long_description=long_description,
author='Luis Howell and Bernd Porr',
author_email='luisbhowell@gmail.com',
py_modules=['ecgdetectors','hrv'],
include_package_data=True,
install_requires=['numpy','pywt','pathlib','scipy','biosppy','gatspy'],
zip_safe=False,
url='https://github.com/luishowell/ecg-detectors',
classifiers=[
'Intended Audience :: Developers',
'License :: OSI Approved :: GPL',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3',
'Topic :: Medical',
],
)