forked from johnoneil/subimage
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
34 lines (31 loc) · 1001 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
from setuptools import setup
def readme():
with open('README.md') as f:
return f.read()
def requirements():
with open('requirements.txt') as f:
return f.read().splitlines()
setup(name='subimage',
version='0.2',
description='Find images within other images.',
long_description = readme(),
classifiers=[
'Development Status :: 3 - Alpha',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 2.7',
'Topic :: Scientific/Engineering :: Image Recognition',
],
keywords = 'Image recognition find subimage processing',
url='https://github.com/johnoneil/subimage',
author='John O\'Neil',
author_email='[email protected]',
license='MIT',
packages=['subimage'],
install_requires = requirements(),
entry_points = {
'console_scripts': [
'subimage-find-aspect-ratio=subimage.find_by_ar:main',
'subimage-find=subimage.find_subimage:main',
],
},
zip_safe=True)