forked from danielsnider/PyImageQualityRanking
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
25 lines (24 loc) · 965 Bytes
/
setup.py
File metadata and controls
25 lines (24 loc) · 965 Bytes
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
from setuptools import setup, find_packages
setup(
name='PyImageQualityRanking',
version='0.1',
packages=find_packages(),
install_requires=['numpy', 'scipy', 'pandas', 'matplotlib'],
entry_points={
'console_scripts': [
'pyimq.main = pyimq.bin.main:main',
'pyimq.util.blurseq = pyimq.bin.utils.create_blur_sequence:main',
'pyimq.util.imseq = pyimq.bin.utils.create_photo_test_set:main',
'pyimq.subjective = pyimq.bin.subjective:main',
'pyimq.power = pyimq.bin.power:main'
]
},
platforms=["any"],
url='https://bitbucket.org/sakoho81/pyimagequalityranking',
license='BSD',
author='Sami Koho',
author_email='sami.koho@gmail.com',
description='PyImageQualityRanking is a small software utility that allows '
'the ordering/sorting of image datasets, according to '
'image-quality related statistical parameters'
)