File size: 717 Bytes
b9a3351 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 |
# setup.py
from setuptools import setup, find_packages
setup(name='emotionpredictor',
version='0.1',
description='EmotionPredictor: Picture affect prediction',
url='https://github.com/robinszym/EmotionPredictor',
author='Robin Szymczak',
packages=find_packages(),
install_requires=['torch',
'torchvision',
'scikit-learn',
'pandas',
'matplotlib',
'plotly',
'seaborn',
'Pillow',
'jupyter',
'tqdm',
'termcolor',],
python_requires='>=3')
|