-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
40 lines (37 loc) · 1.22 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
from setuptools import setup
version = '0.3.2'
with open('README.md') as readme:
long_desc = readme.read()
setup(name='espreso2',
description='An algorithm to estimate an MR slice profiles by learning '
'to match internal patch distributions',
author='Shuo Han',
author_email='[email protected]',
version=version,
packages=['espreso2'],
license='GPLv3',
python_requires='>=3.7.10',
entry_points={
'console_scripts': [
'espreso2-train=espreso2.exec:train',
'espreso2-fwhm=espreso2.exec:fwhm',
]
},
long_description=long_desc,
install_requires=[
'torch>=1.8.1',
'numpy',
'scipy',
'nibabel',
'matplotlib',
'ptxl@git+https://gitlab.com/shan-deep-networks/[email protected]',
'sssrlib@git+https://github.com/shuohan/[email protected]'
],
long_description_content_type='text/markdown',
url='https://github.com/shuohan/espreso2',
classifiers=[
'Programming Language :: Python :: 3',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Operating System :: OS Independent'
]
)