-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
remove cv2 from the install_requires. This has too be done manually v…
…ia conda.
- Loading branch information
1 parent
a6ee74a
commit b2fe29c
Showing
1 changed file
with
5 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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", | ||
|
@@ -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' | ||
] | ||
) |