2024-07-07 04:18:15 +00:00
|
|
|
from pydantic import Field
|
2024-06-19 05:41:12 +00:00
|
|
|
|
2025-09-06 08:08:14 +00:00
|
|
|
from configs.packaging.pyproject import PyProjectTomlConfig
|
2024-06-19 05:41:12 +00:00
|
|
|
|
2025-07-01 04:07:24 +00:00
|
|
|
|
|
|
|
|
class PackagingInfo(PyProjectTomlConfig):
|
2024-06-19 05:41:12 +00:00
|
|
|
"""
|
|
|
|
|
Packaging build information
|
|
|
|
|
"""
|
|
|
|
|
|
|
|
|
|
COMMIT_SHA: str = Field(
|
|
|
|
|
description="SHA-1 checksum of the git commit used to build the app",
|
2024-08-23 15:46:01 +00:00
|
|
|
default="",
|
2024-06-19 05:41:12 +00:00
|
|
|
)
|