This repository was archived by the owner on Mar 6, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathsetup.py
More file actions
43 lines (40 loc) · 1.34 KB
/
setup.py
File metadata and controls
43 lines (40 loc) · 1.34 KB
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
import os
import sys
import codecs
from setuptools import setup
if sys.version_info < (3, 6, 0):
raise RuntimeError('Python 3.6 or higher is required')
here = os.path.abspath(os.path.dirname(__file__))
with codecs.open(os.path.join(here, 'README.rst'), encoding='utf-8') as f:
long_description = f.read()
setup(
name='heartwave',
version='0.9.2',
description='Heart rate measurement from webcam or video',
long_description=long_description,
packages=['heartwave'],
url='https://github.com/erdewit/heartwave',
author='Ewald R. de Wit',
author_email='ewald.de.wit@gmail.com',
license='BSD',
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Science/Research',
'Intended Audience :: Healthcare Industry',
'Intended Audience :: End Users/Desktop',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3 :: Only',
],
keywords='PPG photoplethysmogram heart rate webcam',
entry_points={
'console_scripts': [
'heartwave=heartwave.app:main',
]
},
package_data={'heartwave': ['data/*.xml']},
install_requires=[
'PyQt5', 'PyQtChart', 'numpy', 'scipy',
'opencv-contrib-python'],
)