mirror of https://github.com/cheat/cheat.git
Added 'import argparse' to 'cheat'
This commit is contained in:
parent
139ff6c32e
commit
4fe31ec479
1
cheat
1
cheat
|
@ -19,6 +19,7 @@ cheat.py -- Quick, abridged man pages with examples (main routines)
|
||||||
|
|
||||||
import os
|
import os
|
||||||
import sys
|
import sys
|
||||||
|
import argparse
|
||||||
import subprocess
|
import subprocess
|
||||||
|
|
||||||
DEFAULT_CHEAT_DIR = os.environ.get('DEFAULT_CHEAT_DIR') or \
|
DEFAULT_CHEAT_DIR = os.environ.get('DEFAULT_CHEAT_DIR') or \
|
||||||
|
|
3
setup.py
3
setup.py
|
@ -3,8 +3,7 @@
|
||||||
from distutils.core import setup
|
from distutils.core import setup
|
||||||
import os
|
import os
|
||||||
|
|
||||||
setup(
|
setup(name='cheat',
|
||||||
name='cheat',
|
|
||||||
version='1.0',
|
version='1.0',
|
||||||
summary='Create and view interactive cheatsheets on the command-line',
|
summary='Create and view interactive cheatsheets on the command-line',
|
||||||
homepage='',
|
homepage='',
|
||||||
|
|
Loading…
Reference in New Issue