forked from idealo/imagededup
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
58 lines (53 loc) · 2.24 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
47
48
49
50
51
52
53
54
55
56
57
58
from setuptools import setup, find_packages
long_description = '''
imagededup is a python package that provides functionality to find duplicates in a collection of images using a variety
of algorithms. Additionally, an evaluation and experimentation framework, is also provided. Following details the
functionality provided by the package:
* Finding duplicates in a directory using one of the following algorithms:
- Convolutional Neural Network
- Perceptual hashing
- Difference hashing
- Wavelet hashing
- Average hashing
* Generation of features for images using one of the above stated algorithms.
* Framework to evaluate effectiveness of deduplication given a ground truth mapping.
* Plotting duplicates found for a given image file.
Read the documentation at: https://idealo.github.io/imagededup/
imagededup is compatible with Python 3.6 and is distributed under the Apache 2.0 license.
'''
setup(
name='imagededup',
version='0.1.0',
author='Tanuj Jain, Christopher Lennan, Zubin John, Dat Tran',
description='Package for image deduplication',
long_description=long_description,
license='Apache 2.0',
install_requires=[
'numpy==1.16.3',
'Pillow==6.0.0',
'PyWavelets==1.0.3',
'scipy==1.2.1',
'tensorflow==2.0.0',
'tqdm==4.35.0',
'scikit-learn==0.21.2',
'matplotlib==3.1.1',
],
extras_require={
'tests': ['pytest==4.4.1', 'pytest-cov==2.6.1', 'pytest-mock==1.10.4', 'codecov==2.0.15'],
'docs': ['mkdocs==1.0.4', 'mkdocs-material==4.0.2'],
'dev': ['bumpversion==0.5.3'],
},
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'Intended Audience :: Education',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: Apache Software License',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
'Topic :: Software Development :: Libraries',
'Topic :: Software Development :: Libraries :: Python Modules',
],
packages=find_packages(exclude=('tests',)),
)