-
Notifications
You must be signed in to change notification settings - Fork 24
/
setup.py
40 lines (37 loc) · 939 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
36
37
38
39
40
#!/usr/bin/env python
# coding: utf-8
import setuptools
with open("VERSION") as v:
version = v.read().strip()
setuptools.setup(
name="imgdupes",
version=version,
author="Kenji Doi",
author_email="[email protected]",
description="CLI tool to dedupe images based on perceptual hash",
long_description="Finding and deleting duplicate image files based on perceptual hash.",
license="MIT",
keywords="image dedupe perceptual hash",
url="https://github.com/knjcode/imgdupes",
packages=setuptools.find_packages(),
scripts=['imgdupes'],
python_requires='>=3.6',
install_requires=[
'future',
'ImageHash',
'joblib',
'ngt',
'numpy',
'opencv-python',
'orderedset',
'pathlib',
'pathos',
'Pillow',
'scipy',
'six',
'termcolor',
'tqdm',
'webcolors',
'GPUtil'
],
)