forked from TorchIO-project/torchio
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
67 lines (60 loc) · 1.81 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
#!/usr/bin/env python
"""The setup script."""
from setuptools import setup, find_packages
with open('README.md', encoding='utf8') as readme_file:
readme = readme_file.read()
with open('HISTORY.rst', encoding='utf8') as history_file:
history = history_file.read()
requirements = [
'Deprecated',
'SimpleITK!=2.0.*', # https://github.com/SimpleITK/SimpleITK/issues/1239
'click',
'humanize',
'nibabel',
'numpy>=1.15',
'scipy',
'torch>=1.1',
'tqdm',
]
setup(
author='Fernando Perez-Garcia',
author_email='[email protected]',
python_requires='>=3.6',
classifiers=[
'Development Status :: 2 - Pre-Alpha',
'Intended Audience :: Science/Research',
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
],
description=(
'Tools for loading, augmenting and writing 3D medical images'
' on PyTorch.'
),
entry_points={
'console_scripts': [
'torchio-transform=torchio.cli.apply_transform:main',
'tiotr=torchio.cli.apply_transform:main',
'tiohd=torchio.cli.print_info:main',
],
},
extras_require={
'plot': ['matplotlib'],
},
install_requires=requirements,
license='Apache license',
long_description=readme + '\n\n' + history,
long_description_content_type='text/markdown',
include_package_data=True,
keywords='torchio',
name='torchio',
packages=find_packages(include=['torchio', 'torchio.*']),
setup_requires=[],
test_suite='tests',
tests_require=[],
url='https://github.com/fepegar/torchio',
version='0.18.45',
zip_safe=False,
)