mirror of
https://github.com/facefusion/facefusion.git
synced 2026-09-16 04:25:27 +02:00
* 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
16 lines
301 B
Python
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)
|