From 28afc8aa215b4fef9a22a9599e85bb01e0c874cb Mon Sep 17 00:00:00 2001 From: William Graf <7930703+willgraf@users.noreply.github.com> Date: Tue, 7 Dec 2021 10:32:59 -0800 Subject: [PATCH] Fix line length in setup.py. --- setup.py | 21 +++++++++++---------- 1 file changed, 11 insertions(+), 10 deletions(-) diff --git a/setup.py b/setup.py index 266bf6a..bfd3cce 100644 --- a/setup.py +++ b/setup.py @@ -94,16 +94,17 @@ def run(self, *args, **kwargs): download_url='{}/tarball/{}'.format( about['__url__'], about['__version__']), cmdclass={'build_ext': BuildExtension}, - install_requires=['cython>=0.28.0', - 'opencv-python-headless<=4.2.0.32; python_version < "3"', - 'opencv-python-headless; python_version >= "3"', - 'pandas', - 'networkx>=2.1', - 'numpy>=1.16.6,<1.20.0', - 'scipy>=1.3.0', - 'scikit-image>=0.14.0,!=0.16.0.*,!=0.16.1.*,!=0.16.2.*,!=0.17.1.*,!=0.17.2.*', - 'scikit-learn', - 'tqdm'], + install_requires=[ + 'cython>=0.28.0', + 'opencv-python-headless<=4.2.0.32; python_version < "3"', + 'opencv-python-headless; python_version >= "3"', + 'pandas', + 'networkx>=2.1', + 'numpy>=1.16.6,<1.20.0', + 'scipy>=1.3.0', + 'scikit-image>=0.14.0,!=0.16.0.*,!=0.16.1.*,!=0.16.2.*,!=0.17.1.*,!=0.17.2.*', + 'scikit-learn', + 'tqdm'], extras_require={ 'tests': ['pytest<6', 'pytest-pep8',