Skip to content

Instantly share code, notes, and snippets.

@NicholasBallard
Created August 16, 2020 05:12
Show Gist options
  • Save NicholasBallard/1a59e9d72a93234c96686d05be51c8ef to your computer and use it in GitHub Desktop.
Save NicholasBallard/1a59e9d72a93234c96686d05be51c8ef to your computer and use it in GitHub Desktop.
from setuptools import setup
setup(
name='resize',
version='0.0.1',
py_modules=['resize'],
install_requires=[
'click',
'pillow',
],
entry_points='''
[console_scripts]
resize=resize:main
'''
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment