-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
31 lines (29 loc) · 829 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
#!/usr/bin/env python
from distutils.core import setup
setup(
name='image-conveyor',
version='0.1',
description='Download, process and upload images with AWS',
author='Vadym Serdiuk',
author_email='[email protected]',
url='https://github.com/vadym-serdiuk/image-conveyor',
packages=['image_conveyor'],
python_requires=">=3.6",
install_requires=[
"numpy==1.14.3",
"opencv_python==3.4.0.12",
"pytest",
"pytest-flask",
"boto==2.48.0",
"jsonschema==2.6.0",
"redis==2.10.6",
"flask==1.0.2",
"flask_restplus==0.10.1"
],
entry_points={
"console_scripts": [
"image-conveyor-worker = image_conveyor:run_worker",
"image-conveyor-api = image_conveyor:run_http_server"
],
}
)