TSNDep/dependencies.json
Nique_372 c0c2855891 # Actulizacion importante en el gestor tsndep
- Correcion de export
- Correcion de update\install
- Se agrego las variables ENV con sintaxis "${{}}"
2026-04-27 07:30:55 -05:00

30 lines
No EOL
857 B
JSON

{
"repos": [],
"other_languages": [
{
"name": "Python",
"version": ">=3.10.9",
"requirements": "requirements.txt"
}
],
"hooks": {
"pre_install": [
{
"command": "pip install -r \"${{repo.root}}${{os.sep}}TSNDep${{os.sep}}requirements.txt\"",
"permitir_fallo": false,
"timeout_ms": 30000
}
],
"post_install": [],
"post_install_only_on_success": true,
"pre_update": [
{
"command": "pip install -r \"${{repo.root}}${{os.sep}}TSNDep${{os.sep}}requirements.txt\" --upgrade",
"permitir_fallo": false,
"timeout_ms": 30000
}
],
"post_update": [],
"post_update_only_on_success": true
}
}