Skip to content

Commit

Permalink
use scikit-learn instead of sklearn
Browse files Browse the repository at this point in the history
  • Loading branch information
mehrdadbakhtiari committed May 21, 2018
1 parent c235f8e commit 6f622d8
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion docs/installation.rst
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ You can install these requirement in Ubuntu Linux by running ``sudo apt-get inst
- ``networkx`` version 1.11
- ``scipy``
- ``joblib``
- ``sklearn``
- ``scikit-learn``

You can install required python libraries by running ``pip install -r requirements.txt``

Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,4 @@ cython
networkx==1.11
scipy
joblib
sklearn
scikit-learn
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
url='https://github.com/mehrdadbakhtiari/adVNTR',
packages=['advntr', 'pomegranate'],
package_dir={'advntr': 'advntr', 'advntr.pomegranate': 'pomegranate'},
install_requires=['networkx==1.11', 'scipy', 'biopython', 'cython', 'sklearn'],
install_requires=['networkx==1.11', 'scipy', 'biopython', 'cython', 'scikit-learn'],
provides=["advntr"],
entry_points={
'console_scripts': ['advntr=advntr.__main__:main']
Expand Down

0 comments on commit 6f622d8

Please sign in to comment.