diff --git a/setup.py b/setup.py new file mode 100644 index 0000000000000000000000000000000000000000..97bb2eb850b3b171535fc7eab6cc681c840c655a --- /dev/null +++ b/setup.py @@ -0,0 +1,14 @@ +from setuptools import setup + +setup( + name='contribute', + version='0.1', + py_modules=['contribute'], + install_requires=[ + 'Click', + ], + entry_points=''' + [console_scripts] + contribute=contribute:main + ''', +)