Initial commit

This commit is contained in:
henryruhs
2023-08-19 22:42:25 +02:00
commit e58fa81ca6
50 changed files with 2403 additions and 0 deletions

18
facefusion/metadata.py Normal file
View File

@@ -0,0 +1,18 @@
name = 'FaceFusion'
version = '1.0.0-beta'
website = 'https://facefusion.io'
METADATA =\
{
'name': 'FaceFusion',
'description': 'Next generation face swapper and enhancer',
'version': '1.0.0-beta',
'license': 'MIT',
'author': 'Henry Ruhs',
'url': 'https://facefusion.io'
}
def get(key : str) -> str:
return METADATA[key]