From f1989bcc11ac6fc0bf7df514bd110a00fca794ed Mon Sep 17 00:00:00 2001 From: attardi Date: Sat, 29 Oct 2016 10:19:28 +0200 Subject: [PATCH] See ChangeLog. --- ChangeLog | 2 ++ setup.py | 6 +++--- 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/ChangeLog b/ChangeLog index fbc9378..9c17eb9 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,7 @@ 2016-10-29 Giuseppe Attardi + * setup.py: use scripts instead of console_scripts. + * WikiExtractor.py (pages_from): handle self closing . 2016-08-31 Giuseppe Attardi diff --git a/setup.py b/setup.py index 7328e33..82d2d44 100644 --- a/setup.py +++ b/setup.py @@ -7,15 +7,15 @@ setup( 'database dump', author='Giuseppe Attardi', author_email='attardi@di.unipi.it', - version='2.42', + version='2.66', url='https://github.com/attardi/wikiextractor', license="GPL 3.0", keywords=['text', 'nlp'], entry_points={ - 'console_scripts': [ - 'wikiextractor = WikiExtractor:main' + 'scripts': [ + 'wikiextractor = WikiExtractor.py' ] } )