|
a |
|
b/setup.py |
|
|
1 |
#!/usr/bin/env python3 |
|
|
2 |
# -*- coding: utf-8 -*- |
|
|
3 |
|
|
|
4 |
""" |
|
|
5 |
The python setup script. |
|
|
6 |
|
|
|
7 |
""" |
|
|
8 |
|
|
|
9 |
from setuptools import setup, find_packages |
|
|
10 |
|
|
|
11 |
|
|
|
12 |
import os |
|
|
13 |
|
|
|
14 |
setup( |
|
|
15 |
name='medseg_dl', |
|
|
16 |
description='Medical Image Segmentation', |
|
|
17 |
long_description=open(os.path.join(os.path.dirname(__file__), 'README.md')).read(), |
|
|
18 |
package_dir={'medseg_dl': 'medseg_dl'}, |
|
|
19 |
packages=['medseg_dl', 'medseg_dl.model'], |
|
|
20 |
license='private', |
|
|
21 |
keywords='None', |
|
|
22 |
classifiers=[ |
|
|
23 |
'Development Status :: 2 - Pre-Alpha', |
|
|
24 |
'Natural Language :: English', |
|
|
25 |
'Programming Language :: Python :: 3 :: Only' |
|
|
26 |
], |
|
|
27 |
install_requires=[ |
|
|
28 |
'numpy', |
|
|
29 |
'pydicom', |
|
|
30 |
'dicom2nifti', |
|
|
31 |
'nibabel', |
|
|
32 |
'matplotlib', |
|
|
33 |
'pyyaml' |
|
|
34 |
], |
|
|
35 |
) |