forked from Im-Rises/emotion_recognition_cnn
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
24 lines (23 loc) · 793 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
from setuptools import setup
setup(
name='emotion_recognition_cnn',
version='1.0',
packages=['tensorflow==2.8.0', 'tensorflow-gpu',
'keras==2.8.0'
'opencv-python~=4.5.5.64'
'matplotlib~=3.5.1'
'numpy'
'sklearn~=0.0'
'pandas~=1.4.2'
'Pillow~=9.1.0'
'future~=0.18.2'
'scikit-learn~=1.0.2'
'scikit-image~=0.19.2'
'Flask==2.1.2'
'emoji==1.7.0'],
url='https://github.com/Im-Rises/emotion_recognition_cnn',
license='',
author='Quentin MOREL, Clément REIFFERS, Yohan COHEN-SOLAL',
author_email='quentin-morel88@hotmail.com, clement.reiffers@outlook.fr, yohan.cohen-solal@esme.fr',
description=''
)