Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

__init__.py 314B

1234567891011121314
  1. from pydantic import Field
  2. from configs.packaging.pyproject import PyProjectTomlConfig
  3. class PackagingInfo(PyProjectTomlConfig):
  4. """
  5. Packaging build information
  6. """
  7. COMMIT_SHA: str = Field(
  8. description="SHA-1 checksum of the git commit used to build the app",
  9. default="",
  10. )