generated from FNNDSC/python-chrisapp-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
26 lines (25 loc) · 986 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
from setuptools import setup
setup(
name = 'ep-skimage-mcubes-mni',
version = '1.2.1',
description = 'Marching-cubes implementation from scikit-image',
author = 'Jennings Zhang',
author_email = 'Jennings.Zhang@childrens.harvard.edu',
url = 'https://github.com/jennydaman/ep-skimage-mcubes-mni',
py_modules = ['skimc'],
install_requires = ['chris_plugin', 'pybicpl', 'nibabel', 'scikit-image', 'h5py', 'loguru'],
license = 'MIT',
python_requires = '>=3.10.2',
entry_points = {
'console_scripts': [
'skimc = skimc:main'
]
},
classifiers = [
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.10',
'Topic :: Scientific/Engineering',
'Topic :: Scientific/Engineering :: Bio-Informatics',
'Topic :: Scientific/Engineering :: Medical Science Apps.'
]
)