Spaces:
Running
Running
victorisgeek
commited on
Commit
•
f2f3563
1
Parent(s):
eb9fb68
Update setup.py
Browse files
setup.py
CHANGED
@@ -3,13 +3,13 @@ from setuptools import setup, find_packages
|
|
3 |
with open('requirements.txt') as file:
|
4 |
REQUIRED_PACKAGES = file.read()
|
5 |
|
6 |
-
setup(name='
|
7 |
-
version='
|
8 |
keywords=('face swap'),
|
9 |
-
description='
|
10 |
-
url='https://
|
11 |
author='justld',
|
12 |
-
author_email='
|
13 |
packages=find_packages(),
|
14 |
include_package_data=True,
|
15 |
platforms='any',
|
@@ -17,5 +17,5 @@ setup(name='dofaker',
|
|
17 |
scripts=[],
|
18 |
license='GPL 3.0',
|
19 |
entry_points={'console_scripts': [
|
20 |
-
'
|
21 |
]})
|
|
|
3 |
with open('requirements.txt') as file:
|
4 |
REQUIRED_PACKAGES = file.read()
|
5 |
|
6 |
+
setup(name='faceclone',
|
7 |
+
version='1.1',
|
8 |
keywords=('face swap'),
|
9 |
+
description='https://huggingface.co/spaces/victorisgeek/FaceClone',
|
10 |
+
url='https://huggingface.co/spaces/victorisgeek/FaceClone',
|
11 |
author='justld',
|
12 |
+
author_email='victorisgeek@gmail.com',
|
13 |
packages=find_packages(),
|
14 |
include_package_data=True,
|
15 |
platforms='any',
|
|
|
17 |
scripts=[],
|
18 |
license='GPL 3.0',
|
19 |
entry_points={'console_scripts': [
|
20 |
+
'faceclone = web_ui:main',
|
21 |
]})
|