diff --git a/setup.py b/setup.py index ec8ea00..f952bc2 100644 --- a/setup.py +++ b/setup.py @@ -88,7 +88,7 @@ def get_conda_opencv_info(sys_name): setup( name="pyAprilTag", - version="0.0.5", + version="0.0.6", author="Chen Feng", author_email="cfeng@nyu.edu", description="python wrapper for AprilTag implemented in library cv2cg", @@ -100,5 +100,8 @@ def get_conda_opencv_info(sys_name): license="BSD", cmdclass={'build_ext': build_ext if sys_name=='Windows' else BuildExt}, ext_modules=cythonize(extensions, compiler_directives={'language_level' : sys.version_info[0]}), - install_requires=['opencv>2,<4',] + install_requires=[ + 'numpy', + 'matplotlib' + ] ) \ No newline at end of file