-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
26 lines (24 loc) · 698 Bytes
/
setup.py
File metadata and controls
26 lines (24 loc) · 698 Bytes
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
from setuptools import setup, find_packages
setup(
name='BrainMapper',
version='0.0.1',
description='Mapping brain network activity from structural connectivity',
license='BSD 3-clause license',
maintainer='Andrei-Claudiu Roibu',
maintainer_email='andrei-claudiu.roibu@dtc.ox.ac.uk',
install_requires=[
'numpy',
'pandas',
'torch==1.4',
'fslpy',
'tensorboardX',
'sklearn',
'nibabel',
'h5py',
'seaborn',
'matplotlib',
'scikit-learn',
'scipy',
],
)
# NOTE: THIS NEEDS to be updated, as it is an old, out-of-date version. Need to update this by the end of the project!