forked from AdamMiltonBarker/InceptionFlow
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
24 lines (22 loc) · 781 Bytes
/
setup.py
File metadata and controls
24 lines (22 loc) · 781 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
# Setup script for installing techbubbleiotjumpwaymqtt#
# Author: Adam Milton-Barker <adammiltonbarker@gmail.com>#
# Copyright (C) 2016 - 2017 TechBubble Technologies Limited
# For license information, see LICENSE.txt
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
setup(
name='InceptionFlow',
version="0.5.0",
author='Adam Milton-Barker',
author_email='adammiltonbarker@gmail.com',
url='https://github.com/AdamMiltonBarker/InceptionFlow',
license='',
description='Object & Facial Recognition With IoT Communication. Using Tensorflow Inception V3 & TechBubble IoT JumpWay',
packages=['InceptionFlow'],
install_requires=[
"techbubbleiotjumpwaymqtt >= 0.3.9"
],
classifiers=[],
)