* Inc version, and add wget as requirement

This commit is contained in:
Matthew Honnibal 2015-01-25 23:00:54 +11:00
parent 67ad1581f1
commit 8cd5a91063
1 changed files with 2 additions and 2 deletions

View File

@ -86,7 +86,7 @@ def run_setup(exts):
description="Industrial-strength NLP", description="Industrial-strength NLP",
author='Matthew Honnibal', author='Matthew Honnibal',
author_email='honnibal@gmail.com', author_email='honnibal@gmail.com',
version='0.32', version='0.33',
url="http://honnibal.github.io/spaCy/", url="http://honnibal.github.io/spaCy/",
package_data={"spacy": ["*.pxd"], package_data={"spacy": ["*.pxd"],
"spacy.en": ["*.pxd", "data/pos/*", "spacy.en": ["*.pxd", "data/pos/*",
@ -97,7 +97,7 @@ def run_setup(exts):
ext_modules=exts, ext_modules=exts,
license="Dual: Commercial or AGPL", license="Dual: Commercial or AGPL",
install_requires=['numpy', 'murmurhash', 'cymem', 'preshed', 'thinc', install_requires=['numpy', 'murmurhash', 'cymem', 'preshed', 'thinc',
"unidecode", ], "unidecode", 'wget'],
setup_requires=["headers_workaround"], setup_requires=["headers_workaround"],
) )