-
Notifications
You must be signed in to change notification settings - Fork 11
/
setup.py
34 lines (31 loc) · 1.21 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
#!/usr/bin/env python
from setuptools import setup
import sys
import os
version = '1.2.0'
setup(name = 'psychopy_tobii_controller',
version = version,
description = 'Tobii Controller for PsychoPy',
long_description = """
psychopy_tobii_controller is a helper module to use tobii_research package from PsychoPy.
Disclaimer: psychopy_tobii_controller is unofficial. It is NOT affiliated with Tobii.
""",
classifiers = [
'Development Status :: 4 - Beta',
'Environment :: Console',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: GNU General Public License (GPL)',
'Operating System :: MacOS',
'Operating System :: Microsoft :: Windows',
'Operating System :: POSIX :: Linux',
'Programming Language :: Python',
'Topic :: Scientific/Engineering',
],
keywords = 'Tobii, PsychoPy, Eye tracking',
author = 'Hiroyuki Sogo',
author_email = '[email protected]',
url = 'https://github.com/hsogo/psychopy_tobii_controller/',
licence = 'GNU GPL',
packages = ['psychopy_tobii_controller']
#package_data = {'psychopy_tobii_controller':['ptc_components/*.*']}
)