-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
73 lines (68 loc) · 2.53 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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
'''
(*)~---------------------------------------------------------------------------
This file is part of Pupil-lib.
Pupil-lib is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
Pupil-lib is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with Pupil-lib. If not, see <https://www.gnu.org/licenses/>.
Copyright (C) 2018 Gregory W. Mierzwinski
---------------------------------------------------------------------------~(*)
'''
from setuptools import setup
setup(
name = "pupillib",
version = "1.2.1",
author = "Gregory Mierzwinski",
author_email = "gmierz1@live.ca",
description = ("A software package to perform trial extraction on Pupil Labs eye "
"tracker data collected into XDF files through LabRecorder."),
license = "GPLv3",
keywords = "trial extraction pupil labs",
url = "https://github.com/gmierz/pupil-lib-python/",
packages=[
'pupillib',
'pupillib.core',
'pupillib.core.utilities',
'pupillib.core.workers',
'pupillib.core.workers.processors',
'pupillib.core.workers.processors.processing_functions',
'pupillib.dependencies',
'pupillib.dependencies.xdf',
'pupillib.dependencies.xdf.Python',
],
long_description="See this page: https://github.com/gmierz/pupil-lib-python/",
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: OS Independent",
"Development Status :: 5 - Production/Stable",
"Topic :: Scientific/Engineering :: Visualization",
"Topic :: Scientific/Engineering :: Medical Science Apps.",
"Topic :: Scientific/Engineering :: Information Analysis",
"Topic :: Scientific/Engineering",
],
install_requires=[
'msgpack',
'frozendict',
'cycler',
'matplotlib',
'numpy',
'pip',
'pyparsing',
'python-dateutil',
'pytz',
'ruamel.yaml',
'six'
],
entry_points="""
# -*- Entry points: -*-
[console_scripts]
pupillib = pupillib.pupil_lib:main
""",
)