forked from andrewekhalel/sewar
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
46 lines (42 loc) · 1.34 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
43
44
45
46
from setuptools import setup
def readme():
with open('README.md', encoding='UTF-8') as f:
return f.read()
setup(name='sewar',
version='0.4.6',
description='All image quality metrics you need in one package.',
long_description=readme(),
long_description_content_type="text/markdown",
classifiers=[
'Development Status :: 2 - Pre-Alpha',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.1',
'Programming Language :: Python :: 3.2',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Topic :: Multimedia :: Graphics'
],
keywords='image quality performance metric measure ergas q psnr pansharpening',
url='https://github.com/andrewekhalel/sewar',
author='Andrew Khalel',
author_email='[email protected]',
license='MIT',
packages=['sewar'],
test_suite='nose.collector',
tests_require=['nose','Pillow'],
install_requires=[
'numpy', 'scipy' , 'Pillow'
],
entry_points="""
[console_scripts]
sewar = sewar.command_line:main
""",
zip_safe=False)