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) · 971 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 = 'premc-mincmorph',
version = '0.1.1',
description = 'Smoothen a mask in preparation for marching cubes.',
author = 'Jennings Zhang',
author_email = '[email protected]',
url = 'https://github.com/FNNDSC/ep-premc-mincmorph',
py_modules = ['premc_mincmorph'],
install_requires = ['chris_plugin', 'pycivet', 'loguru'],
license = 'MIT',
python_requires = '>=3.10.2',
entry_points = {
'console_scripts': [
'premc_mincmorph = premc_mincmorph: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.'
]
)