File tree 4 files changed +9
-13
lines changed
4 files changed +9
-13
lines changed Original file line number Diff line number Diff line change @@ -25,7 +25,6 @@ python:
25
25
26
26
# command to install dependencies
27
27
install :
28
- - pip install -r requirements.txt
29
28
- pip install .
30
29
31
30
# command to run tests
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 18
18
with open ('wfdb/version.py' ) as f :
19
19
__version__ = f .read ().split ()[- 1 ].strip ("'" )
20
20
21
- # Get the requirements
22
- with open ('requirements.txt' ) as f :
23
- requirements = f .read ().splitlines ()
24
-
25
21
setup (
26
22
name = 'wfdb' ,
27
23
59
55
# your project is installed. For an analysis of "install_requires" vs pip's
60
56
# requirements files see:
61
57
# https://packaging.python.org/en/latest/requirements.html
62
- install_requires = requirements ,
58
+ install_requires = [
59
+ 'nose>=1.3.7' ,
60
+ 'numpy>=1.11.0' ,
61
+ 'matplotlib>=1.5.1' ,
62
+ 'requests>=2.10.0' ,
63
+ 'pandas>=0.19.1' ,
64
+ 'scipy>=0.19.0' ,
65
+ ],
63
66
64
67
# List additional groups of dependencies here (e.g. development
65
68
# dependencies). You can install these using the following syntax,
Original file line number Diff line number Diff line change 1
- __version__ = '1.3.8 '
1
+ __version__ = '1.3.9 '
You can’t perform that action at this time.
0 commit comments