-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
36 lines (33 loc) · 991 Bytes
/
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
from setuptools import setup, find_packages
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
classifiers = [
'Intended Audience :: Developers',
'Programming Language :: Python :: 3.8',
'License :: OSI Approved :: MIT License',
"Operating System :: OS Independent"
]
setup(
name='tigerhx',
version='0.0.4',
description='Processing MRI images based on deep-learning',
long_description_content_type='text/markdown',
url='https://github.com/htylab/tigerhx',
author='Biomedical Imaging Lab, Taiwan Tech',
author_email='',
License='MIT',
classifiers=classifiers,
keywords='MRI segmentation',
packages=find_packages(),
entry_points={
'console_scripts': [
'tigerhx = tigerhx.hx:main',
]
},
python_requires='>=3.8',
install_requires=[
'numpy>=1.16.0,<2.0',
'nibabel>=3.1.0',
'scipy>=1.6.0'
]
)