Skip to content

Commit

Permalink
-
Browse files Browse the repository at this point in the history
  • Loading branch information
luponzo86 committed Nov 14, 2019
1 parent 050ea7b commit c43117b
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
1 change: 1 addition & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,7 @@ before_install:
# install dependencies for rhapsody
- conda install requests numpy scikit-learn
- conda install matplotlib
- pip install tqdm

install:
# - python setup.py install
Expand Down
6 changes: 4 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,10 @@
version=version,
packages=find_packages(exclude=['contrib', 'docs', 'tests']),
python_requires='>=3.5, <4',
install_requires=['requests', 'numpy', 'scikit-learn', 'matplotlib',
'biopython', 'pyparsing', 'prody'],
install_requires=[
'requests', 'tqdm',
'numpy', 'scikit-learn', 'matplotlib',
'biopython', 'pyparsing', 'prody'],
extras_require={
'docs': ['sphinx >= 1.4', 'sphinx_theme', 'sphinx_rtd_theme']
},
Expand Down

0 comments on commit c43117b

Please sign in to comment.