-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
45 lines (38 loc) · 1.4 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 distutils.core import setup
version = '1.2.5'
setup(
name = 'neural-fmri',
packages = ['neural','neural.wrappers'], # this must be the same as the name above
version = version,
description = 'Neuroimaging Analysis Library',
long_description = '''NeurAL - a neuroimaging analysis library
-------------------------------------------------------
**Documentation and examples:**
http://azraq27.github.com/neural
This library contains helper functions for doing analyses on fMRI data in Python.
In comparison to other Python libraries designed to interact with fMRI data
(e.g., NIPY and PyNIfTI), this library is not intended to interact directly with
the data in any way, just to provide helpful wrapper functions and shortcut methods to
make your life easier.
Since the author uses primarily AFNI, most of the functions are written that way,
but don't specifically have to be that way...
''',
author = 'Bill Gross',
author_email = '[email protected]',
url = 'https://github.com/azraq27/neural',
download_url = 'https://github.com/azraq27/neural/tarball/'+version,
keywords = ['neuroimaging', 'afni', 'fsl', 'fmri'],
classifiers = [
'Topic :: Scientific/Engineering',
'Intended Audience :: Science/Research',
'Development Status :: 3 - Alpha'
],
install_requires=[
'pydicom',
'fuzzywuzzy',
'python-Levenshtein',
'chardet',
'nibabel',
'numpy'
]
)