forked from WillForan/ICA-AROMA
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
35 lines (33 loc) · 1.22 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
from setuptools import setup
from os.path import join, dirname
def readme(fname):
with open(join(dirname(__file__), fname)) as f:
text = f.read()
return text
setup(
name='aroma',
description='ICA-based Automatic Removal Of Motion Artefacts',
long_description=readme('README.md'),
author="R. Pruim, Ronald Hartley-Davies",
version='0.4.0',
license='Apache Software License',
url="http://github.com/rtrhd/icaaroma",
keywords="ics fmri motion",
packages=['icaaroma'],
install_requires=['numpy>=1.6.0', 'nibabel>=1.3.0'],
tests_require=['nose'],
entry_points={'console_scripts':['aroma = icaaroma.aroma:main']},
package_data={'icaaroma': ['data/mask_*.nii.gz']},
classifiers=[
"Development Status :: 4 - Beta",
"Environment :: Console",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: Apache Software License",
"Operating System :: POSIX",
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3",
"Topic :: Scientific/Engineering :: Medical Science Apps.",
]
)