forked from ddetommaso/TobiiGlassesPySuite
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
34 lines (30 loc) · 1.49 KB
/
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
31
32
33
34
from setuptools import setup, find_packages
from codecs import open
from os import path
here = path.abspath(path.dirname(__file__))
# Get the long description from the README file
with open(path.join(here, 'README.md'), encoding='utf-8') as f:
long_description = f.read()
# Arguments marked as "Required" below must be included for upload to PyPI.
# Fields marked as "Optional" may be commented out.
setup(
name='tobiiglasses',
version='1.3',
description='An open-source Python suite for Tobii Pro Glasses 2',
url='https://github.com/ddetommaso/TobiiGlassesPySuite',
download_url='https://github.com/ddetommaso/TobiiGlassesPySuite/archive/1.3.tar.gz',
install_requires=['tobiiglassesctrl>=2.2.6', 'tornado', 'nose', 'pandas', 'matplotlib', 'opencv-contrib-python', 'sortedcontainers==1.5.10', 'dlib'],
author='Davide De Tommaso',
author_email='[email protected]',
keywords=['eye-tracker','tobii','glasses', 'tobii pro glasses 2', 'tobii glasses', 'eye tracking'],
packages=find_packages(exclude=['examples*']),
package_data={'tobiiglasses.aoi.dnn.faces': ['facial_landmarks_68markup.png', 'shape_predictor_68_face_landmarks.dat']},
include_package_data=True,
classifiers = [
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
],
)