* Fix license metadata in setup.py

This commit is contained in:
Matthew Honnibal 2015-09-29 23:02:37 +10:00
parent 69f0c2cd26
commit e562f504ee

View File

@ -120,9 +120,9 @@ def run_setup(exts):
"data/vocab/strings.txt"], "data/vocab/strings.txt"],
"spacy.syntax": ["*.pxd"]}, "spacy.syntax": ["*.pxd"]},
ext_modules=exts, ext_modules=exts,
license="Dual: Commercial or AGPL", license="MIT",
install_requires=['numpy', 'murmurhash', 'cymem >= 1.11', 'preshed == 0.41', install_requires=['numpy', 'murmurhash', 'cymem >= 1.11', 'preshed == 0.41',
'thinc == 3.3', "unidecode", 'wget', 'plac', 'six', 'thinc == 3.3', "text_unidecode", 'wget', 'plac', 'six',
'ujson'], 'ujson'],
setup_requires=["headers_workaround"], setup_requires=["headers_workaround"],
) )