forked from yh-luo/psychopy_tobii_infant
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
25 lines (22 loc) · 844 Bytes
/
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
from setuptools import setup
import psychopy_tobii_infant
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
setup(
name='psychopy_tobii_infant',
version=psychopy_tobii_infant.__version__,
description='Infant-friendly eyetracking',
long_description=long_description,
long_description_content_type="text/markdown",
url='https://github.com/yh-luo/psychopy_tobii_infant',
author='Yu-Han Luo',
author_email='yuhanluo1994@gmail.com',
packages=['psychopy_tobii_infant'],
install_requires=['tobii-research', 'PsychoPy'],
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Operating System :: OS Independent"
],
python_requires='>=3.5',
zip_safe=False)