"docs/git@developer.sourcefind.cn:hehl2/torchaudio.git" did not exist on "e885204ea0d343b8bddd7e829b9e7b29e7c5a9bb"
Commit cca97db0 authored by Kaushik Shivakumar's avatar Kaushik Shivakumar
Browse files

add setup back

parent 9ed87d1e
"""Setup script for object_detection."""
from setuptools import find_packages
from setuptools import setup
REQUIRED_PACKAGES = ['Pillow>=1.0', 'Matplotlib>=2.1', 'Cython>=0.28.1']
setup(
name='object_detection',
version='0.1',
install_requires=REQUIRED_PACKAGES,
include_package_data=True,
packages=[p for p in find_packages() if p.startswith('object_detection')],
description='Tensorflow Object Detection Library',
)
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment