Add setup.py: make installable
1 files changed, 10 insertions(+), 0 deletions(-) A => setup.py
A => setup.py +10 -0
@@ 0,0 1,10 @@ +from setuptools import setup + +setup( + name='check', + version='0.1', + py_modules=['check'], + entry_points={ + 'console_scripts': ['check = check:main'] + } +)