generated from FNNDSC/python-chrisapp-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
31 lines (30 loc) · 885 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='cortical_thickness',
version='1.0.0',
description='A ChRIS plugin wrapper for cortical_thickness and friends',
author='FNNDSC',
author_email='[email protected]',
url='https://github.com/FNNDSC/pl-cortical_thickness',
py_modules=['surf_results'],
install_requires=['chris_plugin', 'numpy', 'loguru'],
license='MIT',
entry_points={
'console_scripts': [
'surf_results = surf_results: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'
]
}
)