2016-02-09 17:31:55 +03:00
|
|
|
{
|
|
|
|
"build": {
|
|
|
|
"sdist": [
|
|
|
|
"pip install -r requirements.txt",
|
2016-04-19 20:50:42 +03:00
|
|
|
"pip install \"numpy<1.8\"",
|
2016-02-09 17:31:55 +03:00
|
|
|
"python setup.py sdist"
|
|
|
|
],
|
|
|
|
"install": [
|
2016-02-27 01:04:33 +03:00
|
|
|
"pip install -v source.tar.gz"
|
2016-02-22 08:13:09 +03:00
|
|
|
],
|
|
|
|
"wheel": [
|
2016-02-26 22:47:35 +03:00
|
|
|
"python untar.py source.tar.gz .",
|
|
|
|
"python setup.py bdist_wheel",
|
2016-02-27 01:04:33 +03:00
|
|
|
"python cpdist.py dist"
|
2016-02-09 17:31:55 +03:00
|
|
|
]
|
|
|
|
},
|
|
|
|
"test": {
|
2016-02-24 21:59:08 +03:00
|
|
|
"after": ["install", "wheel"],
|
2016-02-27 01:04:33 +03:00
|
|
|
"run": [
|
|
|
|
"python -m spacy.en.download --force"
|
|
|
|
],
|
2016-02-09 17:31:55 +03:00
|
|
|
"package": "spacy",
|
2016-02-09 18:11:08 +03:00
|
|
|
"args": "--tb=native -x --models --vectors --slow"
|
2016-02-09 17:31:55 +03:00
|
|
|
}
|
|
|
|
}
|