Diff of /setup.py [000000] .. [094e4c]

Switch to unified view

a b/setup.py
1
from setuptools import setup, find_packages
2
3
with open("README.md", "r", encoding="utf-8") as fh:
4
    long_description = fh.read()
5
6
classifiers = [
7
    'Intended Audience :: Developers',
8
    'Programming Language :: Python :: 3.8',
9
    'License :: OSI Approved :: MIT License',
10
    "Operating System :: OS Independent"
11
]
12
13
setup(
14
     name='tigerhx',
15
     version='0.0.4',
16
     description='Processing MRI images based on deep-learning',
17
     long_description_content_type='text/markdown',
18
     url='https://github.com/htylab/tigerhx',
19
     author='Biomedical Imaging Lab, Taiwan Tech',
20
     author_email='',
21
     License='MIT',
22
     classifiers=classifiers,
23
     keywords='MRI segmentation',
24
     packages=find_packages(),
25
     entry_points={
26
        'console_scripts': [
27
            'tigerhx = tigerhx.hx:main',
28
        ]
29
    },
30
     python_requires='>=3.8',
31
     install_requires=[
32
             'numpy>=1.16.0,<2.0',
33
             'nibabel>=3.1.0',
34
             'scipy>=1.6.0'
35
         ]
36
)