Removing the install_requires cmake from setup.py because the pip cmake package is hopelessly busted at the moment.

This commit is contained in:
Davis King 2019-02-20 07:54:42 -05:00
parent 12ca8ad67f
commit 16a1056916

View File

@ -231,7 +231,7 @@ setup(
cmdclass=dict(build_ext=CMakeBuild, test=PyTest), cmdclass=dict(build_ext=CMakeBuild, test=PyTest),
zip_safe=False, zip_safe=False,
tests_require=['pytest==3.8'], tests_require=['pytest==3.8'],
install_requires=['cmake'], #install_requires=['cmake'], # removed because the pip cmake package is busted, maybe someday it will be usable.
packages=['dlib'], packages=['dlib'],
keywords=['dlib', 'Computer Vision', 'Machine Learning'], keywords=['dlib', 'Computer Vision', 'Machine Learning'],
classifiers=[ classifiers=[