-
Notifications
You must be signed in to change notification settings - Fork 6
/
setup.py
36 lines (32 loc) · 876 Bytes
/
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
from setuptools import setup, find_packages
import spynoza
VERSION = spynoza.__version__
def readme():
with open('README.rst') as f:
return f.read()
install_requires = [
'nibabel',
'nipype',
'numpy',
'scipy',
'pandas',
'jsonpickle'
]
setup(
name='spynoza',
version=VERSION,
description='Python package for fMRI data processing',
long_description=readme(),
requires=install_requires,
classifiers=[
'Development Status :: 1 - Planning',
'Intended Audience :: Science/Research',
'Programming Language :: Python :: 3.4',
'Topic :: Scientific/Engineering :: Bio-Informatics'],
keywords="fMRI nipype preprocessing",
url='https://github.com/spinoza-centre',
author='Spinoza centre',
license='MIT',
platforms='Linux',
packages=find_packages(),
zip_safe=False)