File tree Expand file tree Collapse file tree 2 files changed +11
-8
lines changed Expand file tree Collapse file tree 2 files changed +11
-8
lines changed Original file line number Diff line number Diff line change
1
+ nose >= 1.3.7
2
+ numpy >= 1.11.0
3
+ matplotlib >= 1.5.1
4
+ requests >= 2.10.0
5
+ pandas >= 0.19.1
6
+ scipy >= 0.19.0
Original file line number Diff line number Diff line change 17
17
# Get the version number from the version.py file
18
18
from wfdb .version import __version__
19
19
20
+ # Get the requirements
21
+ with open ('requirements.txt' ) as f :
22
+ requirements = f .read ().splitlines ()
23
+
20
24
setup (
21
25
name = 'wfdb' ,
22
26
54
58
# your project is installed. For an analysis of "install_requires" vs pip's
55
59
# requirements files see:
56
60
# https://packaging.python.org/en/latest/requirements.html
57
- install_requires = [
58
- 'nose>=1.3.7' ,
59
- 'numpy>=1.11.0' ,
60
- 'matplotlib>=1.5.1' ,
61
- 'requests>=2.10.0' ,
62
- 'pandas>=0.19.1' ,
63
- 'scipy>=0.19.0'
64
- ],
61
+ install_requires = requirements ,
65
62
66
63
# List additional groups of dependencies here (e.g. development
67
64
# dependencies). You can install these using the following syntax,
You can’t perform that action at this time.
0 commit comments