Skip to content

Commit

Permalink
remove cv2 from the install_requires. This has too be done manually v…
Browse files Browse the repository at this point in the history
…ia conda.
  • Loading branch information
simbaforrest committed Sep 25, 2019
1 parent a6ee74a commit b2fe29c
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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="[email protected]",
description="python wrapper for AprilTag implemented in library cv2cg",
Expand All @@ -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'
]
)

0 comments on commit b2fe29c

Please sign in to comment.