forked from spinicist/nanslice
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
38 lines (33 loc) · 1.1 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
"""Setup file to Not Another Neuroimaging Slicer
"""
from setuptools import setup, find_packages
from codecs import open
from os import path
here = path.abspath(path.dirname(__file__))
with open(path.join(here, 'README.md'), encoding='utf-8') as f:
long_description = f.read()
setup(
name='nanslice',
version='0.9.0.1',
description='Scripts to slice and display neuroimages (probably stored in nifti format)',
url='https://github.com/maxpietsch/nanslice',
author='Tobias Wood',
author_email='[email protected]',
py_modules=['nanslice'],
install_requires=['matplotlib',
'nibabel'],
license='MPL',
classifiers=['Development Status :: 4 - Beta',
'Topic :: Scientific/Engineering :: Visualization',
'Programming Language :: Python :: 3',
],
keywords='neuroimaging nifti',
packages=find_packages(),
entry_points={
'console_scripts': [
'nanslicer=nanslice.nanslicer:main',
'nanviewer=nanslice.nanviewer:main',
'nanscroll=nanslice.nanscroll:main'
],
},
)