generated from FNNDSC/python-chrisapp-template
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
25 lines (24 loc) · 805 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
from setuptools import setup
setup(
name='mri-preview',
version='1.2.2',
description='A ChRIS plugin to preview the center slices of MRI',
author='Jennings Zhang',
author_email='Jennings.Zhang@childrens.harvard.edu',
url='https://github.com/FNNDSC/pl-mri-preview',
py_modules=['mri_preview'],
install_requires=['chris_plugin', 'nibabel', 'matplotlib', 'loguru'],
license='MIT',
python_requires='>=3.10.2',
entry_points={
'console_scripts': [
'mri_preview = mri_preview:main'
]
},
classifiers=[
'License :: OSI Approved :: MIT License',
'Topic :: Scientific/Engineering',
'Topic :: Scientific/Engineering :: Bio-Informatics',
'Topic :: Scientific/Engineering :: Medical Science Apps.'
]
)