forked from shuohan/ssmore
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
39 lines (36 loc) · 1.16 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
from setuptools import setup, find_packages
version = '0.2.2'
with open('README.md') as readme:
long_desc = readme.read()
setup(name='ssmore',
description='Self-supervised super-resolution',
author='Shuo Han',
author_email='[email protected]',
version=version,
packages=find_packages(),
license='GPLv3',
python_requires='>=3.7.10',
entry_points={
'console_scripts': [
'ssmore-train=ssmore.exec:train',
]
},
long_description=long_desc,
install_requires=[
'torch>=1.8.1',
'improc3d',
'numpy',
'scipy',
'nibabel',
'resize@git+https://github.com/shuohan/[email protected]',
'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/ssmore',
classifiers=[
'Programming Language :: Python :: 3',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Operating System :: OS Independent'
],
)