-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
30 lines (29 loc) · 920 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
from setuptools import setup
setup(name='fae',
version='0.2',
description='Facial animation evaluation suite',
author='Dino Vougioukas',
author_email='[email protected]',
url='https://github.com/DinoMan/facial-animation-evaluation.git',
download_url='https://github.com/DinoMan/facial-animation-evaluation/archive/refs/tags/v0.2.tar.gz',
license='MIT',
packages=['fae'],
package_dir={'fae': 'fae'},
package_data={'fae': ['resources/*']},
install_requires=[
'torch',
'torchvision',
'numpy',
'opencv-python',
'jiwer',
'gdown',
'dtk',
'sewar',
'cpbd',
'face_recognition',
'bidict',
'omegaconf',
'progressbar2'
],
entry_points={'console_scripts': ['get_fae_metrics = fae.evaluate:evaluate']},
zip_safe=False)