From b2fe29c8c53fbc69af5f66b21e71bae1e4b5ef3c Mon Sep 17 00:00:00 2001 From: Chen Feng Date: Wed, 25 Sep 2019 04:34:14 -0400 Subject: [PATCH] remove cv2 from the install_requires. This has too be done manually via conda. --- setup.py | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) 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