Files
facefusion/facefusion/metadata.py
T
2025-07-10 15:22:41 +02:00

18 lines
336 B
Python

from typing import Optional
METADATA =\
{
'name': 'FaceFusion',
'description': 'Industry leading face manipulation platform',
'version': '3.3.2',
'license': 'OpenRAIL-AS',
'author': 'Henry Ruhs',
'url': 'https://facefusion.io'
}
def get(key : str) -> Optional[str]:
if key in METADATA:
return METADATA.get(key)
return None