mirror of
https://github.com/explosion/spaCy.git
synced 2024-11-11 04:08:09 +03:00
20 lines
470 B
JSON
20 lines
470 B
JSON
{
|
|
"build": {
|
|
"sdist": [
|
|
"python pip-clear.py",
|
|
"pip install -r requirements.txt",
|
|
"python setup.py sdist"
|
|
],
|
|
"install": [
|
|
"python pip-clear.py",
|
|
"pip install source.tar.gz",
|
|
"python -m spacy.en.download --force"
|
|
]
|
|
},
|
|
"test": {
|
|
"after": ["install"],
|
|
"package": "spacy",
|
|
"args": "--tb='native' -x --models --vectors --slow"
|
|
}
|
|
}
|