You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

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