-
Notifications
You must be signed in to change notification settings - Fork 768
/
setup.py
38 lines (34 loc) · 1.39 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
from setuptools import setup, find_packages
long_description = '''
ISR (Image Super-Resolution) is a library to upscale and improve the quality of low resolution images.
Read the documentation at: https://idealo.github.io/image-super-resolution/
ISR is compatible with Python 3.6 and is distributed under the Apache 2.0 license.
'''
setup(
name='ISR',
version='2.2.0',
author='Francesco Cardinale',
author_email='[email protected]',
description='Image Super Resolution',
long_description=long_description,
license='Apache 2.0',
install_requires=['imageio', 'numpy', 'tensorflow==2.*', 'tqdm', 'pyaml', 'h5py==2.10.0'],
extras_require={
'tests': ['pytest==4.3.0', 'pytest-cov==2.6.1'],
'docs': ['mkdocs==1.0.4', 'mkdocs-material==4.0.2'],
'gpu': ['tensorflow-gpu==2.*'],
'dev': ['bumpversion==0.5.3'],
},
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Intended Audience :: Education',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: Apache Software License',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
'Topic :: Software Development :: Libraries',
'Topic :: Software Development :: Libraries :: Python Modules',
],
packages=find_packages(exclude=('tests',)),
)