mirror of
https://github.com/explosion/spaCy.git
synced 2024-12-26 18:06:29 +03:00
Update requirements and setup.py
This commit is contained in:
parent
91593b7378
commit
6e6f6be3f5
|
@ -1,9 +1,9 @@
|
||||||
cython>=0.24,<0.28.0
|
cython>=0.24,<0.28.0
|
||||||
numpy>=1.15.0
|
numpy>=1.15.0
|
||||||
msgpack-numpy<0.4.4.0
|
msgpack-numpy<0.4.4.0
|
||||||
cymem>=1.30,<1.32
|
cymem>=2.0.2,<2.1.0
|
||||||
preshed>=1.0.0,<2.0.0
|
preshed>=2.0.1,<2.1.0
|
||||||
thinc>=6.10.3,<6.11.0
|
thinc>=6.10.5,<6.11.0
|
||||||
murmurhash>=0.28.0,<1.1.0
|
murmurhash>=0.28.0,<1.1.0
|
||||||
plac<1.0.0,>=0.9.6
|
plac<1.0.0,>=0.9.6
|
||||||
ujson>=1.35
|
ujson>=1.35
|
||||||
|
|
14
setup.py
14
setup.py
|
@ -190,15 +190,23 @@ def setup_package():
|
||||||
'numpy>=1.15.0',
|
'numpy>=1.15.0',
|
||||||
'msgpack-numpy<0.4.4.0'
|
'msgpack-numpy<0.4.4.0'
|
||||||
'murmurhash>=0.28.0,<1.1.0',
|
'murmurhash>=0.28.0,<1.1.0',
|
||||||
'cymem>=1.30,<1.32',
|
'cymem>=2.0.2,<2.1.0',
|
||||||
'preshed>=1.0.0,<2.0.0',
|
'preshed>=2.0.1,<2.1.0',
|
||||||
'thinc>=6.10.3,<6.11.0',
|
'thinc>=6.10.5,<6.11.0',
|
||||||
'plac<1.0.0,>=0.9.6',
|
'plac<1.0.0,>=0.9.6',
|
||||||
'ujson>=1.35',
|
'ujson>=1.35',
|
||||||
'dill>=0.2,<0.3',
|
'dill>=0.2,<0.3',
|
||||||
'regex==2018.01.10',
|
'regex==2018.01.10',
|
||||||
'requests>=2.13.0,<3.0.0',
|
'requests>=2.13.0,<3.0.0',
|
||||||
'pathlib==1.0.1; python_version < "3.4"'],
|
'pathlib==1.0.1; python_version < "3.4"'],
|
||||||
|
extras_require={
|
||||||
|
'cuda': ['thinc[cuda]>=6.10.5,<6.11.0'],
|
||||||
|
'cuda80': ['thinc[cuda80]>=6.10.5,<6.11.0'],
|
||||||
|
'cuda90': ['thinc[cuda91]>=6.10.5,<6.11.0'],
|
||||||
|
'cuda91': ['thinc[cuda91]>=6.10.5,<6.11.0'],
|
||||||
|
'cuda92': ['thinc[cuda92]>=6.10.5,<6.11.0'],
|
||||||
|
'cuda10': ['thinc[cuda10]>=6.10.5,<6.11.0'],
|
||||||
|
},
|
||||||
classifiers=[
|
classifiers=[
|
||||||
'Development Status :: 5 - Production/Stable',
|
'Development Status :: 5 - Production/Stable',
|
||||||
'Environment :: Console',
|
'Environment :: Console',
|
||||||
|
|
Loading…
Reference in New Issue
Block a user