mirror of
https://github.com/facefusion/facefusion.git
synced 2026-05-01 13:57:50 +02:00
16 lines
298 B
Python
16 lines
298 B
Python
from typing import Optional
|
|
|
|
METADATA =\
|
|
{
|
|
'name': 'FaceFusion',
|
|
'description': 'Industry leading face manipulation platform',
|
|
'version': 'v4',
|
|
'license': 'OpenRAIL-AS',
|
|
'author': 'Henry Ruhs',
|
|
'url': 'https://facefusion.io'
|
|
}
|
|
|
|
|
|
def get(key : str) -> Optional[str]:
|
|
return METADATA.get(key)
|