-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
43 lines (39 loc) · 1.45 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
import io
from setuptools import setup
with io.open('README.md', 'r', encoding='utf-8') as readme_file:
README = readme_file.read()
with open('requirements.txt') as f:
REQUIREMENTS = f.read().splitlines()
setup(
name='vatsatseg',
version='0.0.3',
description=('segment Visceral and Subcutaneous Adipose Tissue (VAT, SAT)'
'in water-fat MRI images'),
long_description=README,
author='Maximilian N. Diefenbach',
author_email='maximilian.diefenbach@tum.de',
url='https://github.com/maxdiefenbach/vatsatseg',
packages=['vatsatseg'],
data_files=[('vatsatseg', ['vatsatseg/config.ini',
'vatsatseg/label_desc.txt'])],
install_requires=REQUIREMENTS,
entry_points={
'console_scripts': ['vatsatseg = vatsatseg:cli'],
},
tests_require=['pytest'],
include_package_data=True,
license='GPLv3',
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Science/Research',
'Natural Language :: English',
'Operating System :: MacOS',
'Operating System :: Microsoft :: Windows',
'Programming Language :: Python',
'Programming Language :: Python :: 3.6',
'Topic :: Scientific/Engineering :: Medical Science Apps.',
'Topic :: Software Development :: Version Control :: Git',
'Topic :: Text Editors :: Emacs'
],
keywords=('mri, radiology, water-fat imaging, segmentation'),
)