mirror of
https://github.com/kevingruesser/bootstrap-vz.git
synced 2025-08-24 15:36:27 +00:00

configuration is like "pip_install": {"packages": ["a_package", "another_package==1.0.1"]} Installs build-essential and python-dev
30 lines
544 B
JSON
30 lines
544 B
JSON
{
|
|
"$schema": "http://json-schema.org/draft-04/schema#",
|
|
"title": "Pip install plugin manifest",
|
|
"type": "object",
|
|
"properties": {
|
|
"plugins": {
|
|
"type": "object",
|
|
"properties": {
|
|
"pip_install": {
|
|
"type": "object",
|
|
"properties": {
|
|
"packages": { "$ref": "#/definitions/packages" }
|
|
},
|
|
"minProperties": 1,
|
|
"additionalProperties": false
|
|
}
|
|
}
|
|
}
|
|
},
|
|
"definitions": {
|
|
"packages": {
|
|
"type": "array",
|
|
"items": {
|
|
"type": "string"
|
|
},
|
|
"minItems": 1,
|
|
"uniqueItems": true
|
|
}
|
|
}
|
|
}
|