Skip to content

Commit

Permalink
Merge pull request #1181 from yaz62/master
Browse files Browse the repository at this point in the history
added scipy to dependencies
  • Loading branch information
SHZ66 authored Sep 30, 2020
2 parents 597779d + e457971 commit bab0bd1
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 1 deletion.
1 change: 1 addition & 0 deletions PKG-INFO
Original file line number Diff line number Diff line change
Expand Up @@ -94,4 +94,5 @@ Classifier: Topic :: Scientific/Engineering :: Chemistry
Requires: numpy (>=1.10)
Requires: pyparsing
Requires: biopython
Requires: scipy
Provides: prody (1.11)
5 changes: 5 additions & 0 deletions prody/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,11 @@
if tuple(map(int, np.__version__.split('.')[:2])) < (1, 10):
raise ImportError('Numpy v1.10 or later is required for ProDy')

try:
import scipy
except ImportError:
raise ImportError('Scipy is a required package for ProDy')

DEPRECATION_WARNINGS = False


Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -178,6 +178,6 @@
entry_points = {
'console_scripts': SCRIPTS,
},
install_requires=['numpy>=1.10', 'biopython', 'pyparsing'],
install_requires=['numpy>=1.10', 'biopython', 'pyparsing', 'scipy'],
#provides=['ProDy ({0:s})'.format(__version__)]
)

0 comments on commit bab0bd1

Please sign in to comment.