forked from predictive-clinical-neuroscience/PCNtoolkit
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
27 lines (26 loc) · 755 Bytes
/
setup.py
File metadata and controls
27 lines (26 loc) · 755 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
27
from setuptools import setup, find_packages
setup(name='pcntoolkit',
version='0.22',
description='Predictive Clinical Neuroscience toolkit',
url='http://github.com/amarquand/PCNtoolkit',
author='Andre Marquand',
author_email='andre.marquand@donders.ru.nl',
license='GNU GPLv3',
packages=find_packages(),
install_requires=[
'argparse',
'nibabel>=2.5.1',
'six',
'sklearn',
'bspline',
'matplotlib',
'numpy>=1.19.5',
'scipy>=1.3.2',
'pandas>=0.25.3',
'torch>=1.1.0',
'sphinx-tabs',
'pymc3>=3.8,<=3.9.3',
'theano==1.0.5',
'arviz==0.11.0'
],
zip_safe=False)