-
Notifications
You must be signed in to change notification settings - Fork 147
Expand file tree
/
Copy pathsetup.py
More file actions
28 lines (23 loc) · 707 Bytes
/
setup.py
File metadata and controls
28 lines (23 loc) · 707 Bytes
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
"""Setup module for GazeML."""
from setuptools import setup, find_packages
setup(
name='gazeml',
version='0.1',
description='Data-driven gaze estimation using machine learning.',
author='Seonwook Park',
author_email='spark@inf.ethz.ch',
packages=find_packages(exclude=[]),
python_requires='>=3.5',
install_requires=[
'coloredlogs',
'h5py',
'numpy',
'opencv-python',
'pandas',
'ujson',
'dlib',
# Install the most appropriate version of Tensorflow
# Ref. https://www.tensorflow.org/install/
# 'tensorflow',
],
)