forked from janfreyberg/tobii-psychopy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
37 lines (34 loc) · 1.17 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
35
36
37
from setuptools import setup, find_packages
from codecs import open
from os import path
readme = 'A package to use tobii eye tracking with psychopy.'
if path.isfile('README.md'):
readme = open('README.md', 'r').read()
version = '0.1.0'
setup(
name='tobiipsychopy',
version=version,
description='A package to use tobii eye tracking with psychopy.',
long_description=readme,
url='https://github.com/janfreyberg/tobii-psychopy',
download_url='https://github.com/janfreyberg/tobii-psychopy/tarball/' +
version,
# Author details
author='Jan Freyberg',
author_email='jan.freyberg@gmail.com',
license='MIT',
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Science/Research',
'Topic :: Software Development :: Code Generators',
'License :: OSI Approved :: MIT License',
# Only the following because these work w/ psychopy
'Programming Language :: Python :: 2.7',
],
keywords=['tobii', 'eyetracking', 'gazetracking'],
packages=['tobiipsychopy'],
install_requires=['numpy', 'psychopy', 'datetime'],
# package_data={
# '': ['templates/*.tpl']
# },
)