diff --git a/README b/README index 11bb731..e90a6b7 100644 --- a/README +++ b/README @@ -56,7 +56,7 @@ You must have them installed prior to installing `textrank3`:: If you are going to use the export function, you also need `NetworkX `_. For a better performance of keyword extraction, install `Pattern `_ -This version has been tested under Python 2.7 +This version has been tested under Python 3.6 More examples diff --git a/setup.py b/setup.py index 4d42067..8911bb8 100644 --- a/setup.py +++ b/setup.py @@ -7,7 +7,11 @@ package_data = { 'summa': ['README', 'LICENSE'] }, - version = '0.0.4', + install_requires=[ + 'scipy', + 'networkx', + ], + version = '0.0.5', description = 'A text summarization and keyword extraction package', author = 'Federico Barrios, Federico Lopez, Antonio Sanchez Pineda', author_email = 'summanlp@gmail.com',