-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
45 lines (44 loc) · 1.13 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
from setuptools import setup, find_packages
setup(
name='brainiak-cloud',
version='0.0.2',
install_requires=[
'click',
'clickutil',
'ipython',
'requests',
'pathos',
'tqdm',
'watchdog',
'flask',
'flask_session',
'binaryornot',
'cfncluster',
'matplotlib',
'pandas',
'nilearn',
'numpy',
'scipy==0.19.1', # See https://github.com/scipy/scipy/pull/8082
'pybind11',
'cython',
'pika',
'brainiak',
'ipywidgets',
'jupyter_contrib_nbextensions',
'jupyter'
],
author='Princeton Neuroscience Institute and Intel Corporation',
author_email='[email protected]',
url='https://github.com/brainiak/brainiak-cloud',
description='Brain Imaging Analysis Kit Cloud',
license='Apache 2',
keywords='neuroscience, algorithm, fMRI, distributed, scalable',
packages=find_packages(),
python_requires='>=3.4',
scripts=[
'bin/client/notebook',
'bin/client/watch',
'bin/server/serve',
'bin/client/copy'
]
)