generated from FNNDSC/python-chrisapp-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
33 lines (32 loc) · 982 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
32
33
from setuptools import setup
setup(
name='diff_unpack',
version='1.1.4',
description='A ChRIS DS plugin that is a thin wrapper about diff_unpack (part of TrackVis, original author Ruopeng Wang)',
author='FNNDSC',
author_email='[email protected]',
url='https://github.com/FNNDSC/pl-diff_unpack',
py_modules=['diff_unpack'],
install_requires=['chris_plugin'],
license='MIT',
python_requires='>=3.8.2',
packages=['init', 'job'],
entry_points={
'console_scripts': [
'diff_unpack = diff_unpack: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'
]
}
)