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__': ...@@ -88,7 +88,9 @@ if __name__ == '__main__':
description='Open MMLab Detection Toolbox', description='Open MMLab Detection Toolbox',
long_description=readme(), long_description=readme(),
keywords='computer vision, object detection', keywords='computer vision, object detection',
url='https://github.com/open-mmlab/mmdetection',
packages=find_packages(), packages=find_packages(),
package_data={'mmdet.ops': ['*/*.so']},
classifiers=[ classifiers=[
'Development Status :: 4 - Beta', 'Development Status :: 4 - Beta',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)', 'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
...@@ -99,10 +101,11 @@ if __name__ == '__main__': ...@@ -99,10 +101,11 @@ if __name__ == '__main__':
'Programming Language :: Python :: 3.4', 'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5', 'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6', 'Programming Language :: Python :: 3.6',
'Topic :: Utilities',
], ],
license='GPLv3', license='GPLv3',
setup_requires=['pytest-runner'], setup_requires=['pytest-runner'],
tests_require=['pytest'], tests_require=['pytest'],
install_requires=['numpy', 'matplotlib', 'six', 'terminaltables'], install_requires=[
'numpy', 'matplotlib', 'six', 'terminaltables', 'pycocotools'
],
zip_safe=False) 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