-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.py
31 lines (27 loc) · 1.06 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
"""Setup file for realtimefmri"""
from setuptools import find_packages, setup
def main():
"""Main setup function"""
setup(name='realtimefmri',
version='0.1.1.dev0',
description='code for realtime fmri',
author='robertg',
author_email='[email protected]',
packages=find_packages(),
install_requires=["numpy",
"redis",
"nibabel",
"pydicom",
"pycortex",
"dash",
"dash_core_components",
"dash_html_components",
"scikit-learn",
"pyserial",
"evdev",
"PyYAML"],
entry_points={'console_scripts':
['realtimefmri = realtimefmri.__main__:main']},
package_data={'realtimefmri': ['config.cfg', 'pipelines/preproc-default.yaml']})
if __name__ == '__main__':
main()