Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

__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. )