diff --git a/cheat b/cheat index a8d3af7..8d27c2d 100755 --- a/cheat +++ b/cheat @@ -19,6 +19,7 @@ cheat.py -- Quick, abridged man pages with examples (main routines) import os import sys +import argparse import subprocess DEFAULT_CHEAT_DIR = os.environ.get('DEFAULT_CHEAT_DIR') or \ diff --git a/setup.py b/setup.py index 38cf968..c115c4c 100644 --- a/setup.py +++ b/setup.py @@ -3,8 +3,7 @@ from distutils.core import setup import os -setup( - name='cheat', +setup(name='cheat', version='1.0', summary='Create and view interactive cheatsheets on the command-line', homepage='',