File size: 665 Bytes
a97be07
 
 
 
 
f2f3563
 
a97be07
f2f3563
 
a97be07
f2f3563
a97be07
 
 
 
 
 
 
f2f3563
a97be07
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
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',
      ]})