Spaces:
Running
Running
from setuptools import setup, find_packages | |
with open('requirements.txt') as file: | |
REQUIRED_PACKAGES = file.read() | |
setup(name='faceclone', | |
version='1.1', | |
keywords=('face swap'), | |
description='https://huggingface.co/spaces/victorisgeek/FaceClone', | |
url='https://huggingface.co/spaces/victorisgeek/FaceClone', | |
author='justld', | |
author_email='victorisgeek@gmail.com', | |
packages=find_packages(), | |
include_package_data=True, | |
platforms='any', | |
install_requires=REQUIRED_PACKAGES, | |
scripts=[], | |
license='GPL 3.0', | |
entry_points={'console_scripts': [ | |
'faceclone = web_ui:main', | |
]}) | |