generated from FNNDSC/python-chrisapp-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
31 lines (30 loc) · 861 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
27
28
29
30
31
from setuptools import setup
setup(
name='parmodel-surface',
version='1.0.0',
description='Create surfaces from spherical functions',
author='Jennings Zhang',
author_email='[email protected]',
url='https://github.com/FNNDSC/pl-parmodel-surface',
py_modules=['parm'],
install_requires=['chris_plugin', 'pybicpl'],
license='MIT',
entry_points={
'console_scripts': [
'parm = parm:main'
]
},
classifiers=[
'License :: OSI Approved :: MIT License',
'Topic :: Scientific/Engineering',
'Topic :: Scientific/Engineering :: Bio-Informatics',
'Topic :: Scientific/Engineering :: Medical Science Apps.'
],
extras_require={
'none': [],
'dev': [
'pytest~=7.1',
'pytest-mock~=3.8'
]
}
)