Created
August 16, 2020 05:12
-
-
Save NicholasBallard/1a59e9d72a93234c96686d05be51c8ef to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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