Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.
 
 
 
 

27 строки
972 B

  1. {
  2. "$schema": "http://json-schema.org/draft-07/schema#",
  3. "$id": "https://setuptools.pypa.io/en/latest/deprecated/distutils/configfile.html",
  4. "title": "``tool.distutils`` table",
  5. "$$description": [
  6. "**EXPERIMENTAL** (NOT OFFICIALLY SUPPORTED): Use ``tool.distutils``",
  7. "subtables to configure arguments for ``distutils`` commands.",
  8. "Originally, ``distutils`` allowed developers to configure arguments for",
  9. "``setup.py`` commands via `distutils configuration files",
  10. "<https://setuptools.pypa.io/en/latest/deprecated/distutils/configfile.html>`_.",
  11. "See also `the old Python docs <https://docs.python.org/3.11/install/>_`."
  12. ],
  13. "type": "object",
  14. "properties": {
  15. "global": {
  16. "type": "object",
  17. "description": "Global options applied to all ``distutils`` commands"
  18. }
  19. },
  20. "patternProperties": {
  21. ".+": {"type": "object"}
  22. },
  23. "$comment": "TODO: Is there a practical way of making this schema more specific?"
  24. }