diff --git a/piqa/__init__.py b/piqa/__init__.py index ec37e72..50816a8 100644 --- a/piqa/__init__.py +++ b/piqa/__init__.py @@ -5,4 +5,4 @@ specific image quality assessement metric. """ -__version__ = '1.0.0' +__version__ = '1.0.1' diff --git a/requirements.txt b/requirements.txt index cf0542f..6e5eb90 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,2 +1,2 @@ -torch>=1.4.0 -torchvision>=0.5.0 +torch>=1.6.0 +torchvision>=0.7.0 diff --git a/setup.py b/setup.py index 044e07f..2b6715d 100644 --- a/setup.py +++ b/setup.py @@ -2,6 +2,7 @@ import os import setuptools +import piqa with open('README.md', 'r') as f: readme = f.read() @@ -11,7 +12,7 @@ setuptools.setup( name='piqa', - version='1.0.0', + version=piqa.__version__, description='PyTorch Image Quality Assessment', long_description=readme, long_description_content_type='text/markdown', @@ -25,5 +26,6 @@ "Programming Language :: Python :: 3", "License :: OSI Approved :: MIT License", "Operating System :: OS Independent", - ] + ], + python_requires='>=3.6', )