From 8cd5a91063ec1a9e4d9291ae3a6804d1d1d58ebd Mon Sep 17 00:00:00 2001 From: Matthew Honnibal Date: Sun, 25 Jan 2015 23:00:54 +1100 Subject: [PATCH] * Inc version, and add wget as requirement --- setup.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/setup.py b/setup.py index b8f4ff9b5..1886f70df 100644 --- a/setup.py +++ b/setup.py @@ -86,7 +86,7 @@ def run_setup(exts): description="Industrial-strength NLP", author='Matthew Honnibal', author_email='honnibal@gmail.com', - version='0.32', + version='0.33', url="http://honnibal.github.io/spaCy/", package_data={"spacy": ["*.pxd"], "spacy.en": ["*.pxd", "data/pos/*", @@ -97,7 +97,7 @@ def run_setup(exts): ext_modules=exts, license="Dual: Commercial or AGPL", install_requires=['numpy', 'murmurhash', 'cymem', 'preshed', 'thinc', - "unidecode", ], + "unidecode", 'wget'], setup_requires=["headers_workaround"], )