-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
42 lines (39 loc) · 940 Bytes
/
setup.py
File metadata and controls
42 lines (39 loc) · 940 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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
"""Setup file for TWAE."""
from setuptools import find_packages, setup
VERSION = "0.1.0"
DESCRIPTION = (
"Extract T-wave alternans from ECG signals using the spectral method (K-score)."
)
setup(
name="twaextractor",
version=VERSION,
description=DESCRIPTION,
author="Diogo Santos",
author_email="drsantos989@gmail.com",
packages=find_packages("src"),
package_dir={"": "src"},
install_requires=[
"scikit-learn",
"wfdb",
"matplotlib",
"scipy",
"numpy",
"pydantic",
],
extras_require={
"dev": [
"isort",
"black[jupyter]",
"flake8",
"flake8-bugbear",
"flake8-builtins",
"flake8-comprehensions",
"flake8-docstrings",
"mypy",
"bandit[toml]",
"pytest",
"pytest-cov",
"pre-commit",
],
},
)