-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
28 lines (27 loc) · 941 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
26
27
28
from setuptools import setup
setup(
name='taskSwitching',
version='0.1.0',
description='Python version of the psychophysics Task Switching Paradigm',
long_description='Designed for compatibility with fMRI scanner button boxes.',
classifiers=[
'Development Status :: 3 - Alpha',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.6',
'Topic :: Psychophysics :: Task switching',
],
keywords='task switching psychophysics fMRI psychology cognitive neuroscience',
url='http://github.com/daniellekurtin/task_switching_paradigm',
author=['Matt Jaquiery', 'Danielle Kurtin'],
author_email='[email protected]',
license='MIT',
packages=['taskSwitching'],
install_requires=[
'numpy',
'psychopy'
],
test_suite='nose.collector',
tests_require=['nose'],
include_package_data=True,
zip_safe=False
)