-
Notifications
You must be signed in to change notification settings - Fork 115
/
setup.py
44 lines (39 loc) · 1.72 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
38
39
40
41
42
43
44
from setuptools import setup
from setuptools import find_packages
with open("docs/README.PyPI.md", "r") as fh:
long_description = fh.read()
setup(
name='miscnn',
version='1.4.0',
description='Framework for Medical Image Segmentation with Convolutional Neural Networks and Deep Learning',
url='https://github.com/frankkramer-lab/MIScnn',
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.7',
install_requires=['tensorflow==2.7.0',
'tensorflow-addons==0.15.0',
'numpy==1.19.2',
'pandas>=1.1.4',
'tqdm==4.51.0',
'nibabel>=3.1.0',
'matplotlib==3.3.1',
'pillow==8.3.2',
'batchgenerators==0.21',
'pydicom==2.0.0',
'SimpleITK==2.0.2',
'scikit-image==0.18.2'],
classifiers=["Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"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."]
)