-
Notifications
You must be signed in to change notification settings - Fork 9
/
setup.py
45 lines (40 loc) · 1.37 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
"""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='1.1',
description='Scripts to slice and display neuroimages (probably stored in nifti format)',
long_description=long_description,
long_description_content_type="text/markdown",
url='https://github.com/spinicist/nanslice',
author='Tobias Wood',
author_email='[email protected]',
py_modules=['nanslice'],
install_requires=['matplotlib>=3.2.0',
'nibabel>=2.0.0',
'numpy>=1.14.2',
'scipy>=1.6.0',
'colorcet>=2.0.0',
'ipympl>=0.7.0',
'h5py'],
python_requires='>=3',
license='MPL',
classifiers=['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'
],
},
)