-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
25 lines (24 loc) · 798 Bytes
/
Copy pathsetup.py
File metadata and controls
25 lines (24 loc) · 798 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
from setuptools import setup
setup(
name='SC-FC',
version='1.0.0',
description='Analysis scripts for the relationship between connectome structural connectivity and functional connectivity',
url='https://github.com/mhturner/SC-FC',
author='Max Turner',
author_email='mhturner@stanford.edu',
packages=['scfc'],
install_requires=['numpy',
'scipy',
'nibabel',
'matplotlib',
'pandas',
'neuprint-python',
'scipy',
'seaborn',
'networkx',
'PyYAML',
'seriate',
'scikit-image'],
include_package_data=True,
zip_safe=False,
)