-
Notifications
You must be signed in to change notification settings - Fork 24
/
setup.py
37 lines (33 loc) · 1.47 KB
/
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
34
35
36
37
from setuptools import setup, find_packages
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
setup(
name='miseval',
version='1.3.0',
description='A Metric Library for Medical Image Segmentation Evaluation',
url='https://github.com/frankkramer-lab/miseval',
author='Dominik Müller',
author_email='[email protected]',
license='GPLv3',
long_description=long_description,
long_description_content_type="text/markdown",
packages=find_packages(),
python_requires='>=3.8',
install_requires=['numpy>=2.0',
'scikit-learn>=1.0.2',
'scikit-image>=0.19.1',
'scipy>=1.7.3',
'hausdorff>=0.2.6',
'numba',
'dictances>=1.5.3'],
classifiers=["Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: OS Independent",
"Intended Audience :: Healthcare Industry",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Scientific/Engineering :: Image Recognition",
"Topic :: Scientific/Engineering :: Medical Science Apps.",
"Topic :: Scientific/Engineering :: Mathematics"]
)