-
Notifications
You must be signed in to change notification settings - Fork 20
/
setup.py
93 lines (86 loc) · 2.9 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
#!/usr/bin/env python
# coding: utf-8
# Package and distribution management.
from setuptools import setup, find_packages
import versioneer
with open('LICENSE') as f:
license = f.read()
setup(
name='deduplication',
# version=versioneer.get_version(),
# To upload on PyPi -> Cannot use PEP 440 local versions.
version=versioneer.get_version().split('+')[0],
description='Fast Near-Duplicate Image Search and Delete.',
long_description='This Python script is a command line tool for visualizing, checking and deleting near-duplicate '
'images from the target directory.',
author='Umberto Griffo',
author_email='umberto.griffo@gmail.com',
url='https://github.com/umbertogriffo/fast-near-duplicate-image-search',
license=license,
classifiers=[
# How mature is this project? Common values are
# 3 - Alpha
# 4 - Beta
# 5 - Production/Stable
'Development Status :: 3 - Alpha',
# Indicate who your project is intended for
'Intended Audience :: Developers',
# Pick your license as you wish (should match "license" above)
'License :: OSI Approved :: Apache Software License',
# Specify the Python versions you support here. In particular, ensure
# that you indicate whether you support Python 2, Python 3 or both.
'Programming Language :: Python :: 3.6',
],
# include all packages under src
packages=find_packages('src',
exclude=["*.experiments", "*.experiments.*", "experiments.*", "experiments", "*.tests",
"*.tests.*", "tests.*", "tests"]),
# tell distutils packages are under src
package_dir={'': 'src'},
# Adding Non-Code Files
include_package_data=True,
install_requires=[
"astroid==2.4.0",
"attrs==19.3.0",
"cycler==0.10.0",
"ImageHash==4.0",
"importlib-metadata==0.15",
"isort==4.3.21",
"joblib==0.14.1",
"kiwisolver==1.0.1",
"lazy-object-proxy==1.4.3",
"matplotlib==3.0.3",
"mccabe==0.6.1",
"more-itertools==7.0.0",
"natsort==5.5.0",
"numpy==1.16.2",
"packaging==20.3",
"pandas==1.0.3",
"Pillow==6.2.2",
"pluggy==0.12.0",
"py==1.8.0",
"pylint==2.5.0",
"pyparsing==2.4.0",
"pytest==4.5.0",
"python-dateutil==2.8.0",
"pytz==2019.1",
"PyWavelets==1.0.3",
"scikit-learn==0.22.2.post1",
"scipy==1.2.1",
"seaborn==0.9.0",
"six==1.12.0",
"toml==0.10.0",
"tqdm==4.45.0",
"typed-ast==1.4.1",
"versioneer==0.18",
"wcwidth==0.1.7",
"wrapt==1.12.1",
"zipp==0.5.1"
],
python_requires='>=3.6',
entry_points={
'console_scripts': [
'deduplication = deduplication.__main__:main'
]
}
)