-
Notifications
You must be signed in to change notification settings - Fork 77
/
setup.py
59 lines (56 loc) · 1.47 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
58
59
# HRV SETUP SCRIPT
import setuptools
from pyhrv import __author__, __version__, __email__, name, description
# import matplotlib
# matplotlib.use('TkAgg')
with open("README.md", "r") as fh:
long_description = fh.read()
# Create setup
setuptools.setup(
name=name,
version=__version__,
author=__author__,
author_email=__email__,
description=description,
long_description=long_description,
long_description_content_type="text/markdown",
python_requires='>=3',
url="https://github.com/PGomes92/pyhrv",
keywords=['Heart Rate Variability', 'HRV'],
setup_requires=[
'numpy',
'scipy',
'biosppy',
'matplotlib',
'nolds',
'spectrum',
],
install_requires=[
'biosppy',
'matplotlib',
'numpy',
'scipy',
'nolds',
'spectrum',
],
packages=setuptools.find_packages(),
package_data={
"pyhrv": ["files/*", "README.md", "references.txt", "files/quickstart/*"]},
include_package_data=True,
classifiers=[
'Intended Audience :: Developers',
'Intended Audience :: Education',
'Intended Audience :: Science/Research',
'Natural Language :: English',
'License :: OSI Approved :: BSD License',
'Programming Language :: Python',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: ',
'Programming Language :: Python :: 3.10',
'Operating System :: OS Independent',
],
)