-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
39 lines (34 loc) · 1 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
#! /usr/bin/env python
from setuptools import setup, find_packages
from imageRecognition import __version__
readme = open('readme.md').read()
VERSION = __version__
REQUIRES_PYTHON = "==3.6"
setup(
name='imageRegcognition',
version=VERSION,
description="match duplicate images",
long_description= readme,
author='Tim Nguyen',
author_email="[email protected]",
install_requires=[
'numpy', 'opencv-python',
'rarfile', 'docopt',
'pdf2image', 'Pypdf2',
'pillow', 'imagehash',
],
python_requires=REQUIRES_PYTHON,
classifiers=[
"Programming Language :: Python :: 3.6",
"Operating System :: POSIX :: Linux",
],
packages=find_packages(exclude=['tests*']),
extras_require= {
'test': ['pytest']
},
entry_points={
'console_scripts': [
'imageRecognition=imageRecognition.__main__:main',
],
},
)