forked from KamitaniLab/bdpy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
56 lines (48 loc) · 1.54 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
46
47
48
49
50
51
52
53
54
55
56
'''
Setup script for bdpy
This file is a part of BdPy.
'''
from setuptools import setup
VERSION = '0.18'
if __name__ == '__main__':
# Long description
with open('./README.md') as f:
long_description = f.read()
# Setup
setup(name='bdpy',
version=VERSION,
description='Brain decoder toolbox for Python',
long_description=long_description,
long_description_content_type='text/markdown',
author='Shuntaro C. Aoki',
author_email='[email protected]',
maintainer='Shuntaro C. Aoki',
maintainer_email='[email protected]',
url='https://github.com/KamitaniLab/bdpy',
license='MIT',
keywords='neuroscience, neuroimaging, brain decoding, fmri, machine learning',
packages=['bdpy',
'bdpy.bdata',
'bdpy.dataform',
'bdpy.distcomp',
'bdpy.dl',
'bdpy.dl.torch',
'bdpy.evals',
'bdpy.feature',
'bdpy.fig',
'bdpy.ml',
'bdpy.mri',
'bdpy.opendata',
'bdpy.preproc',
'bdpy.recon',
'bdpy.recon.torch',
'bdpy.stats',
'bdpy.util'],
install_requires=[
'numpy',
'scipy',
'scikit-learn',
'h5py',
'hdf5storage',
'pyyaml'
])