Files
facefusion/facefusion/metadata.py
T
Henry Ruhs 6b318a94a6 3.9.0 (#1229)
* mark as next, add AlphaFace model

* add hrffa model

* add hrffa model

* cosmetics in codebase

* more job runner coverage

* bump version 3.9.0

* fix metadata
2026-09-03 17:19:06 +02:00

16 lines
301 B
Python

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