-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
40 lines (39 loc) · 1.63 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
from setuptools import setup, find_packages
setup(name="kits19cnn",
version="0.01.5",
description="Reproducing Kidney tumor segmentation using an" + \
" ensembling multi-stage deep learning approach." + \
" A contribution to the KiTS19 challenge by Gianmarco" + \
" Santini, No´emie Moreau and Mathieu Rubeaux.",
url="https://github.com/jchen42703/kits19-2d-reproduce",
author="Joseph Chen",
author_email="[email protected]",
license="Apache License Version 2.0, January 2004",
packages=find_packages(),
install_requires=[
"numpy>=1.10.2",
"scipy",
"scikit-image",
"future",
"nibabel",
"pandas",
"sklearn",
"torch>=1.2.0",
"torchvision>=0.4.0",
"catalyst",
"batchgenerators",
"segmentation_models_pytorch>=0.1.0",
"albumentations>=0.3.0",
],
classifiers=[
"Development Status :: 3 - Alpha",
# Chose either "3 - Alpha", "4 - Beta" or "5 - Production/Stable" as the current state of your package
"Intended Audience :: Developers", # Define that your audience are developers
"Topic :: Software Development :: Build Tools",
"License :: OSI Approved :: MIT License", # Again, pick a license
"Programming Language :: Python :: 3.6",
],
keywords=["deep learning", "image segmentation", "image classification",
"medical image analysis", "medical image segmentation",
"data augmentation"],
)