diff --git a/MANIFEST b/MANIFEST index a07391a..f51e505 100644 --- a/MANIFEST +++ b/MANIFEST @@ -17,3 +17,4 @@ textrank3/preprocessing/porter.py textrank3/preprocessing/snowball.py textrank3/preprocessing/stopwords.py textrank3/preprocessing/textcleaner.py +textrank3/preprocessing/languages/* \ No newline at end of file diff --git a/setup.py b/setup.py index 4f3c037..772eb20 100644 --- a/setup.py +++ b/setup.py @@ -5,13 +5,14 @@ name = 'textrank3', packages = ['textrank3', 'textrank3.preprocessing', 'textrank3.preprocessing.languages'], package_data = { - 'summa': ['README', 'LICENSE'] + 'textrank3': ['README', 'LICENSE'], + 'textrank3.preprocessing.languages': ['*.json',] }, install_requires=[ 'scipy', 'networkx', ], - version = '0.0.10', + version = '0.0.11', description = 'A text summarization and keyword extraction package', author = 'Federico Barrios, Federico Lopez, Antonio Sanchez Pineda', author_email = 'antonio@byhs.eu',