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