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
SOLOv2-pytorch
Commits
bac4c32f
"llm/vscode:/vscode.git/clone" did not exist on "213ffdb54899cd82a4ecf911f217542a1b37d2fc"
Commit
bac4c32f
authored
Oct 07, 2018
by
Kai Chen
Browse files
fix setup.py to include .so files
parent
ea41922c
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
2 deletions
+5
-2
setup.py
setup.py
+5
-2
No files found.
setup.py
View file @
bac4c32f
...
...
@@ -88,7 +88,9 @@ if __name__ == '__main__':
description
=
'Open MMLab Detection Toolbox'
,
long_description
=
readme
(),
keywords
=
'computer vision, object detection'
,
url
=
'https://github.com/open-mmlab/mmdetection'
,
packages
=
find_packages
(),
package_data
=
{
'mmdet.ops'
:
[
'*/*.so'
]},
classifiers
=
[
'Development Status :: 4 - Beta'
,
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)'
,
...
...
@@ -99,10 +101,11 @@ if __name__ == '__main__':
'Programming Language :: Python :: 3.4'
,
'Programming Language :: Python :: 3.5'
,
'Programming Language :: Python :: 3.6'
,
'Topic :: Utilities'
,
],
license
=
'GPLv3'
,
setup_requires
=
[
'pytest-runner'
],
tests_require
=
[
'pytest'
],
install_requires
=
[
'numpy'
,
'matplotlib'
,
'six'
,
'terminaltables'
],
install_requires
=
[
'numpy'
,
'matplotlib'
,
'six'
,
'terminaltables'
,
'pycocotools'
],
zip_safe
=
False
)
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