-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
25 lines (22 loc) · 723 Bytes
/
setup.py
File metadata and controls
25 lines (22 loc) · 723 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
25
from setuptools import setup, find_packages
package_data = {
}
setup(name='tf_object_detection_util',
version='0.1.8',
description='A library to make Object Detection using Tensorflow Object Detection API easier.',
url='https://github.com/prasannals/tf_object_detection_util',
author='Prasanna Lakkur Subramanyam',
author_email='prasanna.lakkur@gmail.com',
license='MIT',
packages=find_packages(),
include_package_data=True,
install_requires=[
'pandas',
'numpy',
'six',
'tensorflow-gpu==1.9.0',
'matplotlib',
'opencv_python>=4.1.2.30',
'Pillow>=7.0.0'
],
zip_safe=False)