-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
27 lines (26 loc) · 968 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
from setuptools import setup, find_namespace_packages
setup(
name='NLL_anomaly_detection',
packages=find_namespace_packages(include=["anomaly_detection", "anomaly_detection.*"]),
version='0.0.2',
description='A simple anomaly detection algorithm for medical imaging '
'based on multi-atlas image registration and negative log likelihood.',
author='Chenghao Liu',
author_email='[email protected], [email protected]',
install_requires=[
'numpy>=1.16',
'nibabel>=3.1.1',
'scikit-image==0.18.1',
'scipy==1.6.2'
],
entry_points={
'console_scripts':[
'NLL_anomaly_detection = anomaly_detection.nll_analysis:main'
]
},
keywords=[
'image segmentation', 'lesion segmentation' , 'unsupervised learning',
'medical image segmentation', 'unsupervised lesion segmentation', 'anomaly detection', 'NLL',
'negative log likelihood'
]
)