Skip to content

Commit

Permalink
Fix line length in setup.py.
Browse files Browse the repository at this point in the history
  • Loading branch information
willgraf committed Dec 7, 2021
1 parent 61cb5f2 commit 28afc8a
Showing 1 changed file with 11 additions and 10 deletions.
21 changes: 11 additions & 10 deletions setup.py
Expand Up @@ -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',
Expand Down

0 comments on commit 28afc8a

Please sign in to comment.