fusionface / facefusion /metadata.py
camikz's picture
Upload 168 files
db86bfc verified
raw
history blame contribute delete
328 Bytes
from typing import Optional
METADATA =\
{
'name': 'FaceFusion',
'description': 'Industry leading face manipulation platform',
'version': '3.1.1',
'license': 'MIT',
'author': 'Henry Ruhs',
'url': 'https://facefusion.io'
}
def get(key : str) -> Optional[str]:
if key in METADATA:
return METADATA.get(key)
return None