forked from gfxdisp/FovVideoVDP
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
42 lines (38 loc) · 1.45 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
41
42
from setuptools import setup
with open("README.md", "r", encoding="utf8") as fh:
long_description = fh.read()
setup(
name='pyfvvdp',
version='1.2.0',
description='PyTorch code for \'FovVideoVDP\': a full-reference' \
'visual quality metric that predicts the perceptual' \
'difference between pairs of images or videos.',
long_description=long_description,
url='https://github.com/gfxdisp/FovVideoVDP',
long_description_content_type='text/markdown',
author='Rafał K. Mantiuk',
author_email='[email protected]',
license='Creative Commons Attribution-NonCommercial 4.0 International Public License',
packages=['pyfvvdp', 'pyfvvdp/third_party'],
package_data={'pyfvvdp': ['csf_cache/*.mat', 'fvvdp_data/*.json']},
include_package_data=True,
install_requires=['numpy>=1.17.3',
'scipy>=1.7.0',
'ffmpeg-python>=0.2.0',
'torch>=1.8.2',
'ffmpeg>=1.4',
'imageio>=2.19.5'],
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Science/Research',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
],
entry_points={
'console_scripts': [
'fvvdp=pyfvvdp.run_fvvdp:main'
]
}
)