forked from JohannesBuchner/imagehash
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
35 lines (32 loc) · 924 Bytes
/
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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
try:
from setuptools import setup
except:
from distutils.core import setup
long_description = ""
with open('README.rst') as f:
long_description = f.read()
setup(
name='ImageHash',
version='4.2.0',
author='Johannes Buchner',
author_email='buchner.johannes@gmx.at',
py_modules=['imagehash'],
data_files=[('images', ['tests/data/imagehash.png'])],
scripts=['find_similar_images.py'],
url='https://github.com/JohannesBuchner/imagehash',
license='BSD 2-clause (see LICENSE file)',
description='Image Hashing library',
long_description=long_description,
long_description_content_type='text/x-rst',
install_requires=[
"six",
"numpy",
"scipy", # for phash
"pillow", # or PIL
"PyWavelets", # for whash
],
test_suite='tests',
tests_require=['pytest>=3'],
)