[6d4aaa]: / setup.py

Download this file

36 lines (29 with data), 787 Bytes

 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
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
"""
The python setup script.
"""
from setuptools import setup, find_packages
import os
setup(
name='medseg_dl',
description='Medical Image Segmentation',
long_description=open(os.path.join(os.path.dirname(__file__), 'README.md')).read(),
package_dir={'medseg_dl': 'medseg_dl'},
packages=['medseg_dl', 'medseg_dl.model'],
license='private',
keywords='None',
classifiers=[
'Development Status :: 2 - Pre-Alpha',
'Natural Language :: English',
'Programming Language :: Python :: 3 :: Only'
],
install_requires=[
'numpy',
'pydicom',
'dicom2nifti',
'nibabel',
'matplotlib',
'pyyaml'
],
)