Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
ModelZoo
ResNet50_tensorflow
Commits
c787baad
Unverified
Commit
c787baad
authored
Jan 20, 2021
by
Hongkun Yu
Committed by
GitHub
Jan 20, 2021
Browse files
Delete setup.py (#9644)
Delete research/setup.py. This is not used by anyone
parent
5b60084d
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
0 additions
and
16 deletions
+0
-16
research/setup.py
research/setup.py
+0
-16
No files found.
research/setup.py
deleted
100644 → 0
View file @
5b60084d
"""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'
,
)
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment