# HG changeset patch # User Jeff Hammel # Date 1468523855 25200 # Node ID aa57b8f607bd7fee2df8e883ee51dcf0d43ae764 # Parent 643c1f11ad9b337c14829c352a1f05a76290054a still doesnt work; lets find another diff -r 643c1f11ad9b -r aa57b8f607bd abbrev/main.py --- a/abbrev/main.py Mon Mar 03 18:33:32 2014 -0800 +++ b/abbrev/main.py Thu Jul 14 12:17:35 2016 -0700 @@ -38,7 +38,7 @@ parser.add_argument('words', nargs='+', help="words") parser.add_argumnet('-m', '--max', dest='max', - type=int, default=1 + type=int, default=1, help="maximum number of letters to use") options = parser.parse_args(args) @@ -46,4 +46,3 @@ if __name__ == '__main__': main() - diff -r 643c1f11ad9b -r aa57b8f607bd setup.py --- a/setup.py Mon Mar 03 18:33:32 2014 -0800 +++ b/setup.py Thu Jul 14 12:17:35 2016 -0700 @@ -4,8 +4,8 @@ import os -version = "0.0" -dependencies = ['MakeItSo', 'webob'] +version = "0.1" +dependencies = [] # allow use of setuptools/distribute or distutils kw = {} @@ -14,7 +14,6 @@ kw['entry_points'] = """ [console_scripts] abbrev = abbrev.main:main - abbrev-template = abbrev.template:main """ kw['install_requires'] = dependencies except ImportError: @@ -42,4 +41,3 @@ zip_safe=False, **kw ) -