15 lines
314 B
Python
15 lines
314 B
Python
|
|
from pydantic import Field
|
||
|
|
|
||
|
|
from configs.packaging.pyproject import PyProjectTomlConfig
|
||
|
|
|
||
|
|
|
||
|
|
class PackagingInfo(PyProjectTomlConfig):
|
||
|
|
"""
|
||
|
|
Packaging build information
|
||
|
|
"""
|
||
|
|
|
||
|
|
COMMIT_SHA: str = Field(
|
||
|
|
description="SHA-1 checksum of the git commit used to build the app",
|
||
|
|
default="",
|
||
|
|
)
|