"llm/vscode:/vscode.git/clone" did not exist on "213ffdb54899cd82a4ecf911f217542a1b37d2fc"
Commit bac4c32f authored by Kai Chen's avatar Kai Chen
Browse files

fix setup.py to include .so files

parent ea41922c
......@@ -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)
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