-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
34 lines (32 loc) · 1.13 KB
/
Copy pathsetup.py
File metadata and controls
34 lines (32 loc) · 1.13 KB
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
"""Setup the package."""
import os
from setuptools import setup, find_packages
# get the version
version = None
with open(os.path.join('sp_experiment', '__init__.py'), 'r') as fid:
for line in (line.strip() for line in fid):
if line.startswith('__version__'):
version = line.split('=')[1].strip().strip('\'')
break
if version is None:
raise RuntimeError('Could not determine version')
setup(name='sp_experiment',
version=version,
description=(
'Implemetation of a sampling paradigm experiment in PsychoPy'
),
url='http://github.com/sappelhoff/sp_experiment',
author='Stefan Appelhoff',
author_email='stefan.appelhoff@mailbox.org',
license='BSD 3-Clause License',
classifiers=[
'Programming Language :: Python :: 3.6',
'Operating System :: Microsoft :: Windows',
'Intended Audience :: Science/Research',
],
keywords=[
"experiment", "psychology", "eeg", "neuroscience",
"psychopy", "tobii", "tobii4c", "4c", "eyetracking"
],
packages=find_packages(),
zip_safe=False)