diff options
Diffstat (limited to 'third_party/python/Click/examples/imagepipe/setup.py')
-rw-r--r-- | third_party/python/Click/examples/imagepipe/setup.py | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/third_party/python/Click/examples/imagepipe/setup.py b/third_party/python/Click/examples/imagepipe/setup.py new file mode 100644 index 0000000000..d2d8d9911a --- /dev/null +++ b/third_party/python/Click/examples/imagepipe/setup.py @@ -0,0 +1,16 @@ +from setuptools import setup + +setup( + name='click-example-imagepipe', + version='1.0', + py_modules=['imagepipe'], + include_package_data=True, + install_requires=[ + 'click', + 'pillow', + ], + entry_points=''' + [console_scripts] + imagepipe=imagepipe:cli + ''', +) |