Skip to content

Commit

Permalink
Update requirements
Browse files Browse the repository at this point in the history
  • Loading branch information
jarun committed Dec 21, 2019
1 parent 1fc674a commit 23423bc
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,8 @@
with open('README.md', encoding='utf-8') as f:
long_description = f.read()

requirements = ['pillow-simd' if get_dist('pillow-simd') is not None else 'pillow']

setup(
name='imgp',
version=version,
Expand All @@ -27,7 +29,7 @@
python_requires='>=3.5', # requires pip>=9.0.0
platforms=['any'],
py_modules=['imgp'],
install_requires=['Pillow'],
install_requires=requirements,
include_package_data=True,
entry_points={
'console_scripts': ['imgp=imgp:main']
Expand Down

0 comments on commit 23423bc

Please sign in to comment.