File tree 5 files changed +52
-41
lines changed
5 files changed +52
-41
lines changed Original file line number Diff line number Diff line change @@ -40,7 +40,7 @@ Development
40
40
41
41
The development repository is hosted at: https://github.com/MIT-LCP/wfdb-python
42
42
43
- The package is to be expanded with physiological signal-processing tools, and general improvements. Development is made for Python 2.7 and 3.5+ only.
43
+ The package is to be expanded with physiological signal-processing tools, and general improvements. Development is made for Python 3.5+ only.
44
44
45
45
46
46
Contributing
Original file line number Diff line number Diff line change @@ -19,7 +19,7 @@ Development
19
19
20
20
The development repository is hosted at: https://github.com/MIT-LCP/wfdb-python
21
21
22
- The package is to be expanded with physiological signal-processing tools, and general improvements. Development is made for Python 2.7 and 3.5+ only.
22
+ The package is to be expanded with physiological signal-processing tools, and general improvements. Development is made for Python 3.5+ only.
23
23
24
24
25
25
API Reference
Original file line number Diff line number Diff line change 1
- certifi == 2020.4.5.1
2
- chardet == 3.0.4
3
- cycler = =0.10.0
4
- idna == 2.9
5
- joblib >= 0.14.1
1
+ certifi >= 2016.8.2
2
+ chardet >= 3.0.0
3
+ cycler > =0.10.0
4
+ idna >= 2.2
5
+ joblib >= 0.11
6
6
kiwisolver >= 1.1.0
7
- matplotlib >= 3 .0.0
8
- mne == 0.20.5
9
- nose = =1.3.7
10
- numpy == 1.18.5
7
+ matplotlib >= 2 .0.0
8
+ mne >= 0.18.0
9
+ nose > =1.3.7
10
+ numpy >= 1.10.1
11
11
pandas >= 0.17.0
12
- pyparsing == 2.4.7
13
- python-dateutil == 2.8.1
14
- pytz == 2020.1
15
- requests == 2.23.0
16
- scikit-learn >= 0.22
17
- scipy == 1.4.1
18
- six == 1.15 .0
19
- sklearn = =0.0
20
- threadpoolctl == 2.1 .0
21
- urllib3 == 1.25.9
12
+ pyparsing >= 2.0.4
13
+ python-dateutil >= 2.4.2
14
+ pytz >= 2018.3
15
+ requests >= 2.8.1
16
+ scikit-learn >= 0.18
17
+ scipy >= 0.17.0
18
+ six >= 0.9 .0
19
+ sklearn > =0.0
20
+ threadpoolctl >= 1.0 .0
21
+ urllib3 >= 1.22
Original file line number Diff line number Diff line change 56
56
# requirements files see:
57
57
# https://packaging.python.org/en/latest/requirements.html
58
58
install_requires = [
59
- 'certifi==2020.4.5.1 ' ,
60
- 'chardet== 3.0.4 ' ,
61
- 'cycler= =0.10.0' ,
62
- 'idna==2.9 ' ,
63
- 'joblib>=0.14.1 ' ,
59
+ 'certifi>=2016.8.2 ' ,
60
+ 'chardet>= 3.0.0 ' ,
61
+ 'cycler> =0.10.0' ,
62
+ 'idna>=2.2 ' ,
63
+ 'joblib>=0.11 ' ,
64
64
'kiwisolver>=1.1.0' ,
65
- 'matplotlib>=3 .0.0' ,
66
- 'mne==0.20.5 ' ,
67
- 'nose= =1.3.7' ,
68
- 'numpy==1.18.5 ' ,
65
+ 'matplotlib>=2 .0.0' ,
66
+ 'mne>=0.18.0 ' ,
67
+ 'nose> =1.3.7' ,
68
+ 'numpy>=1.10.1 ' ,
69
69
'pandas>=0.17.0' ,
70
- 'pyparsing==2.4.7 ' ,
71
- 'python-dateutil==2.8.1 ' ,
72
- 'pytz==2020.1 ' ,
73
- 'requests==2.23.0 ' ,
74
- 'scikit-learn>=0.22 ' ,
75
- 'scipy==1.4.1 ' ,
76
- 'six==1.15 .0' ,
77
- 'sklearn= =0.0' ,
78
- 'threadpoolctl==2.1 .0' ,
79
- 'urllib3==1.25.9 '
70
+ 'pyparsing>=2.0.4 ' ,
71
+ 'python-dateutil>=2.4.2 ' ,
72
+ 'pytz>=2018.3 ' ,
73
+ 'requests>=2.8.1 ' ,
74
+ 'scikit-learn>=0.18 ' ,
75
+ 'scipy>=0.17.0 ' ,
76
+ 'six>=0.9 .0' ,
77
+ 'sklearn> =0.0' ,
78
+ 'threadpoolctl>=1.0 .0' ,
79
+ 'urllib3>=1.22 '
80
80
],
81
81
82
82
# List additional groups of dependencies here (e.g. development
109
109
# 'sample=sample:main',
110
110
# ],
111
111
# },
112
+
113
+ # Add ways to quickly filter project
114
+ classifiers = [
115
+ "Programming Language :: Python" ,
116
+ "Programming Language :: Python :: 3" ,
117
+ "Programming Language :: Python :: 3.5" ,
118
+ "Programming Language :: Python :: 3.6" ,
119
+ "Programming Language :: Python :: 3.7" ,
120
+ "Programming Language :: Python :: 3.8" ,
121
+ "License :: OSI Approved :: MIT License"
122
+ ],
112
123
)
Original file line number Diff line number Diff line change 1
- __version__ = '3.0.0 '
1
+ __version__ = '3.0.1 '
You can’t perform that action at this time.
0 commit comments