requirements.json 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. {
  2. "version": 1,
  3. "features": [
  4. {
  5. "name": "core",
  6. "description": "Core packages necessary for ESP-IDF",
  7. "optional": false,
  8. "requirement_path": "tools/requirements/requirements.core.txt"
  9. },
  10. {
  11. "name": "gdbgui",
  12. "description": "Packages for supporting debugging from web browser",
  13. "optional": true,
  14. "requirement_path": "tools/requirements/requirements.gdbgui.txt"
  15. },
  16. {
  17. "name": "pytest",
  18. "description": "Packages for CI with pytest",
  19. "optional": true,
  20. "requirement_path": "tools/requirements/requirements.pytest.txt"
  21. },
  22. {
  23. "name": "ttfw",
  24. "description": "Packages for CI with ttfw",
  25. "optional": true,
  26. "requirement_path": "tools/requirements/requirements.ttfw.txt"
  27. },
  28. {
  29. "name": "ci",
  30. "description": "Packages for ESP-IDF CI scripts",
  31. "optional": true,
  32. "requirement_path": "tools/requirements/requirements.ci.txt"
  33. },
  34. {
  35. "name": "docs",
  36. "description": "Packages for building ESP-IDF documentation",
  37. "optional": true,
  38. "requirement_path": "tools/requirements/requirements.docs.txt"
  39. }
  40. ]
  41. }