-
Notifications
You must be signed in to change notification settings - Fork 27
Expand file tree
/
Copy pathsetup.py
More file actions
20 lines (19 loc) · 819 Bytes
/
setup.py
File metadata and controls
20 lines (19 loc) · 819 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
setup(
name='segmentation_models_3D',
version='1.1.1',
author='Roman Sol (ZFTurbo)',
packages=['segmentation_models_3D', 'segmentation_models_3D/backbones', 'segmentation_models_3D/base', 'segmentation_models_3D/models'],
url='https://github.com/ZFTurbo/segmentation_models_3D',
description='Set of Keras models for segmentation of 3D volumes .',
long_description='3D variants of popular models for segmentation like FPN, Unet, Linknet and PSPNet.'
'Models work with keras (version 3).'
'More details: https://github.com/ZFTurbo/segmentation_models_3D',
install_requires=[
'keras==3.3.3',
"classification_models_3D==1.1.0",
],
)