Face_Fusion / facefusion /metadata.py
manthanbachu's picture
Upload folder using huggingface_hub
ec313eb verified
raw
history blame contribute delete
336 Bytes
from typing import Optional
METADATA =\
{
'name': 'FaceFusion',
'description': 'Industry leading face manipulation platform',
'version': '3.3.0',
'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